<html>
<head>
<title>Sarthak Verma – HTML Tags Assignment</title>
</head>
<body><center>
<h1 style=”color: blue;”>My HTML Tags Assignment</h1>
<p style=”color: brown;”>
Hello! My name is <b style=”color:black;”>Sarthak Verma</b>.
I am learning HTML and different HTML tags.
</p>
<hr>
<h2 style=”color: green;”>What is HTML?</h2>
<p style=”color: purple;”> HTML stands for <strong>HyperText Markup Language</strong>.
It is used to create the basic structure of a web page.
</p>
<h3 style=”color: orange;”>Different Types of Text</h3>
<p style=”color: darkblue;”>
This is <b>bold text</b>,
this is <i>italic text</i>,
and this is <u>underlined text</u>.
</p>
<p style=”color: red;”>
HTML is <mark>easy and interesting</mark> to learn.
</p>
<br>
<h4 style=”color: green;”>My Learning Journey</h4>
<p style=”color: brown;”>
First, I started learning HTML.<br>
After that, I will learn CSS.<br>
Then, I will learn JavaScript.
</p>
<h5 style=”color: purple;”>Image Example</h5>
<center>
<img src=”https://digitalworkservice.com/wp-content/uploads/2026/09/ChatGPT-Image-May-20-2026-06_09_02-PM.png” alt=”Digital Marketing” width=”600″>
</center>
<h6 style=”color: blue;”>Useful Link</h6>
<p style=”color: darkgreen;”>
Visit
<a href=”https://www.google.com” style=”color: red;”>
Google
</a>
to search for more information.
</p>
<h2 style=”color: orange;”>Things I Am Learning</h2>
<ul style=”color: blue;”>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<h2 style=”color: green;”>My Learning Steps</h2>
<ol style=”color: purple;”>
<li>Understand HTML tags</li>
<li>Practice HTML coding</li>
<li>Create a simple web page</li>
</ol>
<hr>
<p style=”color: red;”>
<strong>Created by Sarthak Verma</strong>
</p>
</center>
</body>
</html>