-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayout Using Grid Areas.html
87 lines (63 loc) · 1.69 KB
/
Layout Using Grid Areas.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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>Layout Using Grid-Areas</title>
<style>
body{
height: 100vh;
box-sizing: border-box;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 0.2fr 1fr;
grid-template-areas:
"header header";
}
header{
margin-inline: 6rem;
padding: 1rem;
}
header{
grid-area: header;
background-color: palegoldenrod;
display: flex;
justify-content: space-between;
align-items:baseline;
}
.logo{
grid-area: logo;
}
.navbar{
grid-area: navbar;
}
nav a{
text-decoration: none;
}
nav ul li{
list-style-type: none;
padding-left: 5rem;
}
nav ul{
padding: 0;
display: flex;
}
</style>
</head>
<body>
<header>
<div class="logo">
PRITAM_S
</div>
<nav class="navbar">
<ul>
<li> <a href=""> Home </a> </li>
<li> <a href=""> About</a> </li>
<li> <a href=""> Services</a> </li>
<li> <a href=""> Contact </a> </li>
</ul>
</nav>
</header>
</body>
</html>