xxxxxxxxxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>What is html?</title>
</head>
<body bgcolor="white">
<h1> <font color="white">Welcome to Edureka</font></h1>
<p> <font color="white">learn about html<a href="http//edureka.co">here</font></a>
<center><img src="imag.jpg" alt="Edureka" style="width:600px;height:400px"></img></center>
<ul><font color="bule">
<li>Full stack</li>
<li>python</li>
<li>java</li>
<li>devops</li>
<li>Cloud computing</li>
</font>
</ul>
<button>click here</button>
</body>
</html>
xxxxxxxxxx
<html>
<heading>
<title> static website</title>
</head>
<body>
<h1> unordered list</h1>
<p>you can go now</p>
<ul>
<li>java</li>
<li>python</li>
<li>Devops</li>
<li>Cloud computing</li>
</ul>
</body>
</html>
xxxxxxxxxx
<html>
<heading>
<title>static website</title>
</heading>
<body>
<h1>what is html?</h1>
<p>Whenever you can go</p>
<ol>
<li>python</li>
<li>java</li>
<li>Devops</li>
<li>Cloud computing</li>
</ol>
<button>get started</button>
</body>
</html>
xxxxxxxxxx
<html>
<head>
<title> Marks list</title>
</head>
<body>
<h1>Subject wise</h1>
<table>
<tr>
<th>student first name</th>
<th>student lastname</th>
<th>roll number</th>
<th>marks</th>
<th>grade</th>
</tr>
<tr>
<th>supriya</th>
<th>Thellapuri</th>
<th>18ku1a0564</th>
<th>789</th>
<th>A</th>
</tr>
<tr>
<th>srihari</th>
<th>Mallela</th>
<th>18ku1a0546</th>
<th>879</th>
<th>A+</th>
</tr>
<tr>
<th>haripriya</th>
<th>Mallela</th>
<th>18ku1a0501</th>
<th>987</th>
<th>O</th>
</tr>
</table>
</body>
</html>
xxxxxxxxxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>What is html?</title>
</head>
<body bgcolor="white">
<h1> <font color="white">Welcome to Edureka</font></h1>
<p> <font color="white">learn about html<a href="http//edureka.co">here</font></a>
<center><img src="imag.jpg" alt="Edureka" style="width:600px;height:400px"></img></center>
<ul><font color="bule">
<li>Full stack</li>
<li>python</li>
<li>java</li>
<li>devops</li>
<li>Cloud computing</li>
</font>
</ul>
<button>click here</button>
</body>
</html>
xxxxxxxxxx
1
2
3
4
5
6
<dl>
<dt><b>HTMl</b></dt>
<dd>This stands for hyper text markup language</dd>
<dt><b>HTTP</b></dt>
<dd>This stands for hyper text transfer protocol</dd>
</dl>