-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.html
82 lines (75 loc) · 1.68 KB
/
index3.html
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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UserInfo</title>
<style>
table{
width: 100%;
border-collapse: collapse;
}
th{
text-align: left;
text-decoration: underline;
color: black
}
td,th {
border: 1px solid black
padding : auto
}
tr:nth-child(even){
background-color: rgb(98, 60, 167);
}
tr:nth-child(odd){
background-color: #fc8f00;
}
</style>
</head>
<body>
<table>
<caption>hello World!</caption>
<tr>
<th>Serial No.</th>
<th>Username</th>
<th>Roll NO.</th>
</tr>
<tr>
<td>1.</td>
<td>Rishabh</td>
<td>22104089</td>
</tr>
<tr>
<td>2.</td>
<td>Sushant</td>
<td>2201398</td>
</tr>
<tr>
<td>3.</td>
<td>Navya</td>
<td>22103048</td>
</tr>
<tr>
<td>4.</td>
<td>Rahul</td>
<td>2210044</td>
</tr>
</table>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>list</title>
</head>
<body>
<h1 id="orderedList"> Ordered List </h1>
<ul style="list-style-type: circle;">
<li>Rishabh</li>
<li>Navya</li>
<li>Pihu</li>
</ul>
</body>
</html>