-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample2.html
More file actions
46 lines (46 loc) · 745 Bytes
/
sample2.html
File metadata and controls
46 lines (46 loc) · 745 Bytes
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
<html>
<head><title> sample2</title></head>
<body>
<table>
<thead>
<tr>
<th> s.no</th>
<th>name</th>
<th> marks</th>
</tr>
</thead>
<tbody>
<tr>
<td> 1</td>
<td> sireesha</td>
<td> 100</td>
</tr>
<tr>
<td> 2</td>
<td> anil kumar</td>
<td> 100 </td>
</tr>
<tr>
<td>3</td>
<td> susmitha</td>
<td> 70</td>
</tr>
</tbody>
</table>
<ul>
<li>sireesha</li>
<li>anil kumar</li>
<li> susma</li>
</ul>
<ol>
<li> anil kumar</li>
<li>sireesha</li>
</ol>
<marquee direction="right" bgcolor="gold">
anil kumar
</marquee>
<marquee>
sireesha
</marquee>
</body>
</html>