24 lines
499 B
HTML
24 lines
499 B
HTML
<head>
|
|
<title>Div Margin Top Margin Bottom</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<style rel="stylesheet" type="text/css">
|
|
|
|
.codes {
|
|
border-bottom: 2px dashed pink;
|
|
padding: 4px;
|
|
color: aqua;
|
|
font-size: 0.8em;
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="codes">
|
|
<h1>Codes</h1>
|
|
<p>Happy Codings is sample source code search engine.</p>
|
|
</div>
|
|
</body>
|
|
</html> |