<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<div class="some-block">
<p>My first paragraph.</p>
</div>
<button onClick="alert('Thank you for clicking')" >Click me!</button>
</body>
</html>
body{
background:#E0F7FA;
}
h1{
color:#64B5F6;
}
div.some-block {
background: #F3E5F5;
padding: 5px 10px;
}
div.some-block p{
color: #CE93D8;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.