-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembers_table.html
75 lines (67 loc) · 2.27 KB
/
members_table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Members table</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300&family=Kanit:wght@300&family=Merriweather+Sans:wght@500&family=Noto+Serif+JP:wght@200&family=Playfair+Display&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/members.css">
</head>
<body>
<!--Heading starts-->
<header>
<h2>Members Attending Global Alimni Meet - 2022</h2>
</header>
<!--Heading Ends-->
<!--Table starts-->
<main>
<div class="tab">
<table>
<tr>
<th>Name</th>
<th>Branch</th>
<th>PassOut Year</th>
<th>City</th>
<th>Country</th>
<th>Contact No.</th>
<th>Email</th>
</tr>
<tr>
<td>Rajanikant Awasthi</td>
<td>Electrical</td>
<td>1979</td>
<td>Raipur</td>
<td>India</td>
<td>9826116738</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Rajendra Prasad</td>
<td>ELECTRICAL</td>
<td>1992</td>
<td>Raipur</td>
<td>India</td>
<td>9425230340</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Manoj Kumar Bajaj</td>
<td>Computer Science & Engineering</td>
<td>2010</td>
<td>Raipur</td>
<td>India</td>
<td>9827860785</td>
<td>[email protected]</td>
</tr>
</table>
</div>
</main>
<!--Table Ends-->
</body>
</html>