-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03b-full-page-menu.html
More file actions
66 lines (60 loc) · 1.37 KB
/
03b-full-page-menu.html
File metadata and controls
66 lines (60 loc) · 1.37 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>Full Page Menu</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/base.css" />
<style type="text/css">
nav {
height: 100vh;
display: grid;
/* grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr); */
/* It is the same */
grid-template: repeat(2, 1fr) / repeat(3, 1fr);
}
nav>div {
padding: 3rem;
background: #41295a;
background: -webkit-linear-gradient(to bottom right, #2f0743, #41295a);
background: linear-gradient(to bottom right, #2f0743, #41295a);
}
a {
display: inline-block;
margin-bottom: 0.7rem;
padding-bottom: 0.1rem;
border-bottom: solid 1px white;
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<nav>
<div>
<h2><a href="#">Home</a></h2>
<p>Learn about the latest updates</p>
</div>
<div>
<h2><a href="#">Products</a></h2>
<p>Free and paid products to suit your needs</p>
</div>
<div>
<h2><a href="#">Services</a></h2>
<p>Here's what we can offer you</p>
</div>
<div>
<h2><a href="#">About</a></h2>
<p>Get to know us better</p>
</div>
<div>
<h2><a href="#">Blog</a></h2>
<p>Dig deeper into lots of content</p>
</div>
<div>
<h2><a href="#">Contact</a></h2>
<p>Reach out to us</p>
</div>
</nav>
</body>
</html>