You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Div margin-top margin-botto...

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>