Run
1264 x 150
1
2
<html>
3
<head>
4
<style>
5
.myDiv {
6
border: 5px inset yellow;
7
background-color: lightgreen;
8
text-align: center;
9
}
10
</style>
11
</head>
12
<body>
13
<h1>div tag example</h1>
14
<div class="myDiv">
15
<h2>this is my heading in this div.</h2>
16
<p>This is my paragraph in this div.</p>
17
</div>
18
</body>
19
</html>