-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter7.html
More file actions
44 lines (42 loc) · 1.22 KB
/
chapter7.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
<!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>Document</title>
<style>
*{
margin: 0%;
padding: 0%;
}
header{
background-color: aqua;
}
ul{
display: inline-grid;
/* list-style: decimal; */
grid-template-columns: auto auto auto;
/* text-align: center; */
}
li{
list-style: none;
padding: 0px 10px;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li>home</li>
<li>about</li>
<li>contact</li>
</ul>
</nav>
</header>
<div class="container">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti alias id explicabo quo necessitatibus nobis, enim tempore quae magni eaque asperiores. Incidunt aspernatur dolore ducimus recusandae harum ullam consequuntur deleniti.
</div>
</body>
</html>