<!DOCTYPE html>
<html lang="en">
<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>title</title>
</head>
<body>
</body>
</html>
<h1>This is h1</h1>>
<h2>This is h2</h2>>
<h3>This is h3</h3>>
<h4>This is h4</h4>>
<h5>This is h5</h5>>
<h6>This is h6</h6>>
<div>This is a paragraph. It is a block level elemnt</div>
<p>This is a paragraph. It is a block level elemnt</p>
<span>This is span tag. It is an inline element</span>
<a href="https://github.com/Vinayak2805">Visit my github profile</a>
<img src="vin.jpg" alt="Vin's Image">
<div>
<b>Html</b>is a markup language.
<i>Italics</i>
<u>Underlined</u>
<big>This is big</big>
<small>This is small</small>
</div>
<div>2<sup>2</sup> equals 4</div>
<div>Water's chemical formula is H<sub>2</sub>O</div><div>I am Vin. <br>This is a new line</div>
<hr><pre>This is
me .
</pre><ol type="i">
<li>This is item number 1</li>
<li>This is item number 2</li>
<li>This is item number 3</li>
<li>This is item number 4</li>
</ol>
The possible values of type attribute in Ordered Lists are "i/I/1/A/a"
<ul type="square">
<li>This is an item</li>
<li>This is an item</li>
<li>This is an item</li>
<li>This is an item</li>
</ul>
The possible of type attribute in Unordered Lists are "disc/square/circle etc."
Sample layout:
<table>
<thead>
<tr>
<th>Name</th>
<th>ID</th>
<th>Income</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tom</td>
<td>2337</td>
<td>$1</td>
</tr>
<tr>
<td>Jerry</td>
<td>2338</td>
<td>$2</td>
</tr>
</tbody>
</table>
Forms are generally used in contact page - We can use forms to take users' input
<form action="backend.php">
Name: <input type="text" placeholder="Enter your name">
<br>
Email: <input type="email" placeholder="Enter your email">
<br>
Message:
<br>
<textarea> name="message"cols="30" rows="5" placeholder="Type your querry here"</textarea>
</form>
Videos can be embeded using video tags
<video src="vin.mp4" width="100px">Error</video>