-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.03 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.03 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
<!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>CSS</title>
<style>
.navlist a {
text-decoration: none;
color: black;
}
.navlist>div {
background: rgba(128, 128, 128, 0.544);
padding: 6px;
margin: 8px;
border-radius: 4px;
}
.navlist {
width: 40%;
display: flex;
flex-wrap: wrap;
margin: auto;
text-align: center;
}
</style>
</head>
<body>
<div class="navlist">
<div><a href="./background.html">Background</a></div>
<div><a href="./cards.html">Cards</a></div>
<div><a href="./navbar.html">Navbar</a></div>
<div><a href="./radio_button.html">Radio Button</a></div>
<div><a href="solar-system/solar-system.html">Soloar System</a></div>
</div>
</body>
</html>