HTML Project 1
HTML Project 1
<html>
<head>
<title>Bold tag</title>
</head>
<body>
<b>I'm Kunal Saxena, a BBA(II) student at DAV Institute of Management. I completed my
schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a passion for drawing,
which I pursue as a hobby. My father is employed in the private sector, while my mother is a
dedicated homemaker. </b>
</body>
</html>
Output:
1
2.HTML code to implement italic tag.
<html>
<head>
<title>Italic tag</title>
</head>
<body>
<i>I'm Kunal Saxena, a BBA(II) student at DAV Institute of Management. I completed my
schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a passion for drawing,
which I pursue as a hobby. My father is employed in the private sector, while my mother is
a dedicated homemaker. </i>
</body>
</html>
Output:
2
3.HTML code to implement underline tag.
<html>
<head>
<title>Underline tag</title>
</head>
<body>
<u>I'm Kunal Saxena, a BBA(II) student at DAV Institute of Management. I completed my
schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a passion for drawing,
which I pursue as a hobby. My father is employed in the private sector, while my mother is a
dedicated homemaker. </u>
</body>
</html>
Output:
3
4.HTML code to implement break tag.
<html>
<head>
<title>Break Tag</title>
</head>
<body>
<b>I'm Kunal Saxena, a BBA(II) student at DAV Institute of Management. </b>
<br>I completed my schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a
passion for drawing, which I pursue as a hobby.
<br>My father is employed in the private sector, while my mother is a
dedicated homemaker.
</body>
</html>
Output:
4
5.HTML code to implement center align tag.
<html>
<head>
<title>Center aligns</title>
</head>
<body>
<h1 style= text-align: center>MY INTRODUCTION </h1 style= text-align: center>
<p style= text-align: center> I'm Kunal Saxena, a BBA(II) student at DAV Institute of
Management. I completed my schooling at Sarvodaya Sr. Sec School. Apart from
academics, I have a passion for drawing, which I pursue as a hobby. My father is employed
in the private sector, while my mother is a dedicated homemaker. </p style= text-align:
center>
</body>
</html>
Output:
5
6.HTML code to implement left align tag.
<html>
<head>
<title>Center aligns</title>
</head>
<body>
<h1 style= text-align:left>MY INTRODUCTION </h1 style= text-align:left>
<p style= text-align:left> I'm Kunal Saxena, a BBA(II) student at DAV Institute of
Management. I completed my schooling at Sarvodaya Sr. Sec School. Apart from
academics, I have a passion for drawing, which I pursue as a hobby. My father is employed
in the private sector, while my mother is a dedicated homemaker. </p style= text-
align:left>
</body>
</html>
Output:
6
7.HTML code to implement right align tag.
<html>
<head>
<title>Center aligns</title>
</head>
<body>
<h1 style= text-align:Right>MY INTRODUCTION </h1 style= text-align:Right>
<p style= text-align:Right> I'm Kunal Saxena, a BBA(II) student at DAV Institute of
Management. I completed my schooling at Sarvodaya Sr. Sec School. Apart from
academics, I have a passion for drawing, which I pursue as a hobby. My father is employed
in the private sector, while my mother is a dedicated homemaker. </p style= text-
align:Right>
</body>
</html>
Output:
7
8.HTML code to implement Background colour
attribute.
<html>
<head>
<title>Background color</title>
</head>
<body bgcolor=orange>
I'm Kunal Saxena, a BBA(II) student at DAV Institute of Management. I completed my
schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a passion for drawing,
which I pursue as a hobby. My father is employed in the private sector, while my mother is
a dedicated homemaker.
</body>
</html>
Output:
8
9.HTML code to implement font tag.
<html>
<head>
<title>Font size</title>
</head>
<body>
<font size=100px> I'm Kunal Saxena, a BBA(II) student at DAV Institute of Management. I
completed my schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a
passion for drawing, which I pursue as a hobby. My father is employed in the private
sector, while my mother is a dedicated homemaker. </font>
</body>
</html>
Output:
Output:
Output:
Output:
12
<head>
<title>paragraph tag</title>
</head>
<body>
<b>This is paragraph. <br></b>
<p>I'm Kunal Saxena, a BBA(II) student at DAV Institute of Management. I completed my
schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a passion for drawing,
which I pursue as a hobby. My father is employed in the private sector, while my mother is
a dedicated homemaker. </p>
</body>
</html>
Output:
13
<head>
<title>paragraph with heading tag</title>
</head>
<body>
<b>This is paragraph. <br></b>
<p>I'm Kunal Saxena </p>
<h2> i am BBA(II) student at DAV Institute of Management. </h2>
<p>I completed my schooling at Sarvodaya Sr. Sec School. Apart from academics, I have a
passion for drawing, which I pursue as a hobby. My father is employed in the private
sector, while my mother is a dedicated homemaker. </p>
</body>
</html>
Output:
Output:
15
</head>
<body>
<a href="https://davim.ac.in"> DAV Institute of Management </a>
</body>
</html>
Output:
16
17.HTML code to implement image tag.
<html>
17
<head>
<title>Image Tag</title>
</head>
<body>
<img src="https://images.pexels.com/photos/5877254/pexels-photo-5877254.jpeg?
auto=compress&cs=tinysrgb&w=600&lazy=load" width="55%" height="65%">
</body>
</html>
Output:
Output:
Output:
21
Output:
22