-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathachievements.html
47 lines (43 loc) · 1.31 KB
/
achievements.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
<!--Achievements
1. CEO of Alphabet and Google
2. Launched Google Chrome
3. Received the prestigious Global Leadership Awards 2019
4. Serves as member of Board of Advisors at Ruba Inc
-->
<!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>Achievements</title>
<link rel="stylesheet" href="achievements.css">
</head>
<body>
<nav class="navbar">
<a href="Home.html">Home</a>
<a href="achievements.html">Achievements</a>
<a href="gallery.html">Gallery</a>
</nav>
<table class="achievements_table">
<th class="heading">Sr. No.</th>
<th class="heading">Achievements</th>
<tr class="row odd">
<td>1.</td>
<td>CEO of Alphabet and Google</td>
</tr>
<tr class="row even">
<td>2.</td>
<td>Launched Google Chrome </td>
</tr>
<tr class="row odd">
<td>3.</td>
<td>Received the prestigious Global Leadership Awards 2019</td>
</tr>
<tr class="row even">
<td>4.</td>
<td>Serves as member of Board of Advisors at Ruba Inc</td>
</tr>
</table>
</body>
</html>