<!DOCTYPE html> declaration defines this document to be HTML5<html> element is the root element of an HTML
page<head> element contains meta information about the document<title> element specifies a title for the document<body> element contains the visible page content<h1>Heading 1 - h1</h1>
<h2>Heading 2 - h2</h2>
<h3>Heading 3 - h3</h3>
<h4>Heading 4 - h4</h4>
<h5>Heading 5 - h5</h5>
<h6>Heading 6 - h6</h6>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Officiis quidem iusto rem soluta necessitatibus consequatur placeat aliquam obcaecati accusantium aperiam nihil enim, vero explicabo nulla. Est at quod doloribus placeat!
</p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Officiis quidem iusto rem soluta necessitatibus consequatur placeat aliquam obcaecati accusantium aperiam nihil enim, vero explicabo nulla. Est at quod doloribus placeat!
//ordered list
<ol>
<li>Red</li>
<li>Black</li>
<li>Orange</li>
</ol>
//unordered list
<ul>
<li>Red</li>
<li>Black</li>
<li>Orange</li>
</ul>
<a href="https://revolutionit.in" target="_blank">Visit Website</a>
<a href="index.html" target="_blank">Home</a>
<img src="whitelogo.png" alt="Logo">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15286.419512784008!2d74.2414699!3d16.6966444!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc725756de823d233!2sRevolution%20IT%20Solutions%20-%20Best%20Software%20Company%20in%20Kolhapur!5e0!3m2!1sen!2sin!4v1672054999605!5m2!1sen!2sin"
width="100%" height="450"
style="border:0;" allowfullscreen=""
loading="lazy" referrerpolicy="no-referrer-when-downgrade">
</iframe>
<table style="width:100%">
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>TATA</td>
<td>Mr. ABC</td>
<td>India</td>
</tr>
<tr>
<td>Google</td>
<td>Mr. XYZ</td>
<td>US</td>
</tr>
<tr>
<td>Microsoft</td>
<td>Mr. PQR</td>
<td>US</td>
</tr>
</table>
| Company | Contact | Country |
|---|---|---|
| TATA | Mr. ABC | India |
| Mr. XYZ | US | |
| Microsoft | Mr. PQR | US |
<input type="text" placeholder="Text"><br><br>
<input type="number" placeholder="Number"><br><br>
<input type="email" placeholder="Email"><br><br>
<input type="date" placeholder="Date"><br><br>
<input type="password" placeholder="Password"><br><br>
<button>Submit</button>
<a>