-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.22 KB
/
index.html
File metadata and controls
44 lines (42 loc) · 1.22 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
<html>
<head>
<style>
nav ul{
list-style-type: none;
overflow: hidden;
}
nav ul li a{
text-decoration: none;
display: block;
color: white;
padding: 10px;
}
nav ul li{
float: left;
overflow: hidden;
font-size:30px;
background-color: blue;
}
nav ul li a:hover{
background-color: black;
}
div{
font-size: 20px
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href='Web dev.html'>Web Thoery</a></li>
<li><a href='Html.html'>HTML</a></li>
<li><a href=''>CSS</a></li>
</ul>
</nav>
<div>
This is the Home page<br/>
This page will be the 'hub' from where u can access related info on web dev
</div>
<a href="https://developer.mozilla.org/en-US/docs/Learn#Getting_our_code_examples">Git</a>
</body>
</html>