-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
67 lines (60 loc) · 1.56 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: #f1f1f1;
}
li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
/* Change the link color on hover */
li a:hover {
background-color: #555;
color: white;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hacktoberfest 2021 - Ends now</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h2>Vertical Navigation Bar</h2>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#about">Gallary</a></li>
<li><a href="#about">Services</a></li>
<li><a href="#about">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
<h1 id="head">Support open source and earn a limited edition T-shirt !</h1>
<h1 id="head">Also help towards greener environment by contributing a tree instead of tee</h1>
<table style="width: 90%; color:blue;">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>ABC</td>
<td>XYZ</td>
<td>50</td>
</tr>
<tr>
<td>uvw</td>
<td>ariana</td>
<td>44</td>
</tr>
</table>
</body>
</html>