-
Notifications
You must be signed in to change notification settings - Fork 0
/
UniversalSelector.html
106 lines (102 loc) · 2.41 KB
/
UniversalSelector.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<title>Universal Selector</title>
<style>
* {
color: burlywood;
}
</style>
</head>
<body>
<h1>Universal Selector</h1>
<p>PIAIC Offers the following Courese</p>
<div>
<p>1) Artifical Inteligence</p>
</div>
<div>
<p>2) BlockChain</p>
</div>
<div>
<p>4)Cloud Native Computing</p>
</div>
<div>
<p>4) Internet of Things</p>
</div>
<p>Below is the list of student</p>
<table border="20" width = "800">
<tr>
<th>S.NO</th>
<th>Name</th>
<th>Roll NO.</th>
<th>Courses</th>
</tr>
<tr>
<td>1 </td>
<td>Ali</td>
<td>PIAIC 001</td>
<td>
<ol>
<li>
Artifical Inteligence
</li>
<li>
BlockChain
</li>
<li>Cloud Native Computing And</li>
<li>
Internet Of Things
</li>
</ol>
</td>
</tr>
<tr>
<td>2</td>
<td>Ainee</td>
<td>PIAIC002</td>
<td>
<ol>
<li>
Artifical Inteligence
</li>
<li>
Internet of Things
</li>
</ol>
</td>
</tr>
<tr>
<td>3</td>
<td>Sana</td>
<td>PIAIC003</td>
<td>
<ol>
<li><p>Cloud Native Computing</p></li>
<li><p>Internet of Things</p></li>
</ol>
</td>
</tr>
<tr>
<td>4</td>
<td>Imran</td>
<td>PIAIC004</td>
<td>
<ol>
<li>Artifivcal Intelegence</li>
</ol>
</td>
</tr>
<tr>
<td>5</td>
<td>Imran </td>
<td>PIAIC005</td>
<td>
<ol>
<li>BlockChain</li>
<li>Cloud Native Computing</li>
</ol>
</td>
</tr>
</table>
</body>
</html>