-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 815 Bytes
/
index.html
File metadata and controls
33 lines (31 loc) · 815 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Projects</title>
<style>
.center {
text-align: center;
margin:2 auto;
color: gray;
}
.list {
text-align: left;
margin-left: 10%;
}
.item {
font-size: larger;
margin-top: 5px;
}
</style>
</head>
<body>
<h2 class="center">Web Projects</h2>
<ul class="list">
<li class="item"><a href="./fizzbuzz/index.html">Fizzbuzz</a></li>
<li class="item"><a href="./3B-game/index.html">3B Game</a></li>
<li class="item"><a href="./WebSearch/index.html">Search Web</a></li>
</ul>
</body>
</html>