zeek5.html
<html lang="en">
<!-- In this page we have learn to use heading from <h1>(largest) to <h6>(smallest) and paragraph and inserting random words through lorem23 means 23 random words added . <strong> tag makes word bold and emphasis <em> tag for giving italic look and getting 4 para by doing (p*4).WE have to use <br> self closing tag to break line.<hr> makes a line -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heading, paragraphs and emmet</title>
</head>
<body>
<h1>Zeeshan</h1>
<h2>Zeeshan</h2>
<h3>Zeeshan</h3>
<h4>Zeeshan</h4>
<h5>Zeeshan</h5>
<h6>Zeeshan</h6>
<p>This is Zeeshan playing with paragraph and headings<strong>
This is strong</strong> Lorem, ipsum dolor sit <em>This is emphasized</em>
amet consectetur adipisicing elit. Quasi, sequi?
</p><
<!-- Here i typed p*4 and got four para tags -->
<p>FIRST <br>Go to new line</p>
<hr>
<p>SECOND</p>
<p>THIRD</p>
<p>FOURTH</p>
</body>
</html>
Comments
Post a Comment