<!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>Heading 1 for Rajendra </h1>
<h2>Heading 2 for Rajendra </h2>
<h3>Heading 3 for Rajendra </h3>
<!-- if you need some example world so you use loram12 for 12 words -->
<p> • Incompatible: the chosen fixed size may be too large for a user's available live space, causing the user to scroll in order to view the whole page; a fixedWeb page may also appear too small, leaving unsightly blank spaces.
<!-- <br> tag use for a line break or line change and it is self closing tags -->
<br>• Totalitarian: the Web does not want to run the risk of being under too much control, i.e. we do not want every Web page to be identical. Some issues in print design are not transferable to the Web, which has its own idiosyncrasies, giving it the advantage of being independent of the print media</p>
<!-- for italic keyword you use <i></i> tag -->
<i>this is italic</i><br>
<!-- If you need a horizontal line you'll use for <hr> tag, and it is self closing-->
<hr>
<!-- <strong></strong> and <b> tag use for character size bold -->
<strong>This letters is bold with strong tag</strong>
<br><b>This letters is bold with b tag</b>
<!-- if you need more tags so you'll use { tag * xyz} . xyz = enter a number -->
<p>First para</p>
<p>Second para</p>
<p>third para</p>
<p>fourt para</p>
<!-- control + enter to jump into new line -->
</body>
</html>
Comments
Post a Comment