Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Webpage Creation Using HTML

1.Create a simple html file to demonstrate the use of different tags.


Program:
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head><title>web lab 1</title></html>
<body>
<h1>My creation 1</h1>
<h2>My creation 2</h2>
<h3>My creation 3</h3>
<h4>My creation 4</h4>
<h5>My creation 5</h5>
<h6>My creation 6</h6>
<p>My first creation of web technology program</p>
<a href=http://www.studytonight.com>This is my link CLICK HERE</a>
<p>FLOWER IMAGE</p>
<img src="C:\Users\student\Desktop\i.jpg" alt="rose" width="200" height="100" />
<p>Some information</p>
<p><hr />I like flower..Particularly i like Rose.In color of PINK and RED. There are differnt
colors
and different Names of the flower are there..</p>
</body>
</html>

Output:

2.Design a web page to illustrate the various types of list.

Coding:
<html>
<title>web lab 1</title>
</head>
<body>
<p>Unordered list of weeks</p>
<ul>
<li>Sunday</li>

<li>Monday</li>
<li>Thuesday</li>
<li>Wednesday</li>
<li>Thursday</li>
<li>Friday</li>
<li>Saturday</li></ul>
<p>Ordered List of weeks</p>
<ol>
<li>Sunday</li>
<li>Monday</li>
<li>Thuesday</li>
<li>Wednesday</li>
<li>Thursday</li>
<li>Friday</li>
<li>Saturday</li></ol>
<p>Description List of weeks</p>
<dl>
<dt>Sunday</dt>
<dd>For all sundays are Holiday</dd>
<dt>Monday,Thuesday,wednesday,Thursday,Friday</dt>
<dd>For all days Working day</dd>
</dl>
</body>

</html>
Output:

You might also like