-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2nd class.html
More file actions
169 lines (150 loc) · 3.53 KB
/
2nd class.html
File metadata and controls
169 lines (150 loc) · 3.53 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="robots" content="follow,index"
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="keywords for seo"
<title>
List items
</title>
</head>
<body>
<!-- <p>Date:6/December/2022</p>
<p>Day:Tuesday</p>
<p>Class= yes </p> -->
<h2>Fruit names:</h2>
<ol>
<li>mango</li>
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ol>
<h2>Fruit names:</h2>
<ol type="A">
<li>mango </li>
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ol>
<h2>Fruit names:</h2>
<ol type="i">
<li>mango </li>
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ol>
<br>
<h2>Fruit names:</h2>
<ol type="I">
<li>mango </li>
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ol>
<h2>Fruit names:</h2>
<br>
<ol start="10">
<li>mango</li>
<li>orange</li>
<li>banana</li>
<li>grapes </li>
</ol>
<h2>Fruit names:</h2>
<ol start="10" reversed>
<li>mango</li>
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ol>
<h2>Fruit names:</h2>
<ol>
<li value="100">mango</li>
<li value="200">orange</li>
<li>banana</li>
<li>grapes </li>
</ol>
<hr>
<h2>Fruit names:</h2>
<ul>
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ul>
<h2>Fruit names:</h2>
<ul type="circle">
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ul>
<h2>Fruit names:</h2>
<ul type="disc">
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ul>
<h2>Fruit names:</h2>
<ul type="square">
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</ul>
<h2>Fruit names:</h2>
<dl>
<li>orange</li>
<li>banana</li>
<li>grapes</li>
</dl>
<br>
<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>
<br>
<a href="https://www.tutorialspoint.com/html/html_lists.htm" target="
_parent">list references</a>
<a href="https://www.tutorialspoint.com/html/html_text_links.htm" target="_top">anchor tags</a>
<hr>
<table border="" cellspacing="6" cellpadding="12" bgcolor="" background="./course1.jpg" width="" height="">
<caption>My first Table</caption>
<th>Name</th>
<th>Email</th>
<th>Password</th>
<tr>
<td>Usman</td>
<td>usman.pk7102@gmail.com</td>
<td>abc</td>
</tr>
</table>
<br>
<br>
<br>
<a href="https://google.com" >google</a>
<br>
<br>
<table border="3">
<thead>
<tr>
<td>Name</td>
<td>Roll no.</td>
<td>Marks</td>
</tr>
</thead>
<tbody>
<tr>
<td>Sufyan</td>
<td>101</td>
<td>66/100</td>
</tr>
<tr>
<td>Bakar</td>
<td>102</td>
<td>78/100</td>
</tr>
</tbody>
</table>
</body>
</html>