Quick actions

cmd+k|ctrl+k

Navigation

Languages

Alert

Snippet info

Language

JavaScript

Visibility

public

Author

manxglot

Created

2020-03-30T15:41:10Z

Updated

2020-03-30T15:41:10Z

<!DOCTYPE html>
<html>
<body>

<style>
.myButton {
 border-radius: 1px;
    background-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    border: 0px solid #d8d8d8;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .23), inset 1px 1px 0 0 hsla(0, 0%, 100%, .2);
    color: #26272b;
    border-bottom-width: 2px;
    width: 100%;
    padding: 20px;
    margin-bottom: 3%;

}
</style>


<p>Click the button to display an alert box.</p>

<button class="myButton" onclick="myFunction()">Klik Saya</button>

<script>
function myFunction() {
  alert("Hello Mr. Santosa Wijayanto and Allfrienships ! I am Manzola Caniago student at STMIK Eresha Kota Tangerang Selatan, Provinsi Banten.");
}
</script>

</body>
</html>
INFO