headings paragraphs and emmet
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heading Paragraphs and Emmet</title>
</head>
<body>
<h1> Shresthy</h1>
<h2> Shresthy</h2>
<h3> Shresthy</h3>
<h4> Shresthy</h4>
<h5> Shresthy</h5>
<h6> Shresthy</h6>
<!-- lorem23 for dummy text with 23 words -->
<p>Lorem ipsum dolor sit. Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquam, placeat a vero unde doloribus molestiae <strong>this is strong</strong> deleniti, quos sint eveniet necessitatibus hic eius ut <b>Bold is here</b> esse facere quia voluptas <em>this is emphasised</em> consequuntur <i>Italic is here</i> dolor quibusdam ipsum quod aperiam optio.</p>
<!-- for breaking line use br tag and for a horizontal line use hr. strong is same as bold and em is same as italic but bold and italic are suggested to be avoided in html 5 -->
<!-- ctrl+enter to jump into new line -->
<p>first
<br> this is a new line
</p>
<hr>
<p>second</p>
<p>third</p>
<p>fourth</p>
</body>
</html>
Comments
Post a Comment