-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclass1.html
More file actions
83 lines (67 loc) · 1.14 KB
/
class1.html
File metadata and controls
83 lines (67 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<html>
<head>
<title> ABC </title>
</head>
<body>
My 1st Webpage
<h1>My 1st Webpage</h1>
<h2>My 1st Webpage</h2>
<h3>My 1st Webpage</h3>
<h4>My 1st Webpage</h4>
<h5>My 1st Webpage</h5>
<h6>My 1st Webpage</h6>
<p> This is my 1st parragraph</p>
<img src="img/sample.jpg" alt="Sample Image">
<h1> Visit Youtube </h1>
<a href="http://www.youtube.com"> Youtube </a>
<ul>
<li>Aalu</li>
<li>Bhindi</li>
<li>Tamatar</li>
</ul>
<ol>
<li>Naman</li>
<li>Vaibhav</li>
<li>Harsh</li>
</ol>
<ul type="square">
<li>Naman</li>
<li>Vaibhav</li>
<li>Harsh</li>
</ul>
<ol start=2>
<li>Naman</li>
<li>Vaibhav</li>
<li>Harsh</li>
</ol>
<ol type="i">
<li>Naman</li>
<li>Vaibhav</li>
<li>Harsh</li>
</ol>
<table border=1 style="border:1px solid black;">
<tr bgcolor=red>
<th>Name</th>
<th>RollNo</th>
<th>Activity</th>
</tr>
<tr bgcolor=green>
<td>Akshay</td>
<td>16bcan018</td>
<td>Study</td>
</tr>
<tr bgcolor=blue>
<td>Ankita</td>
<td>16bcan084</td>
<td>Study</td>
</tr>
<tr bgcolor=yellow>
<td>Naman</td>
<td>16bcan030</td>
<td>Time Pass</td>
</tr>
</table>
<a href="http://www.google.com" target="_blank"><button type="button">Submit</button>
</a>
</body>
</html>