margin in html tag code example
Example 1: how to add a left margin in css
<html>
<head>
</head>
<body>
<p style = "margin-left: 15px; border:1px solid black;">
This is a paragraph with a specified left margin
</p>
<p style = "margin-left: 5%; border:1px solid black;">
This is another paragraph with a specified top margin in percent
</p>
</body>
</html>
Example 2: how do I add a vertical margin in css
subject {
margin-top: /*the size of the margin */ (example: 100px)
/* or */
margin-bottom: /*the size of the margin */ (example: 100px)
}