-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle.html
More file actions
41 lines (38 loc) · 1.06 KB
/
google.html
File metadata and controls
41 lines (38 loc) · 1.06 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
<!Doctype html>
<html>
<head>
<title>Google</title>
<meta charset="utf-8">
<style>
body{
margin:0;
height:100vh;
width:100vw;
}
header{
background-color:red;
height:40px;
padding:0
}
section{
background-color:blue;
height:calc(100vh - 80px);
}
footer{
background-color:green;
padding:0;
height:40px;
}
</style>
</head>
<body>
<header>
<a href="" class="header-content">Gmail</a>
<a href="" class="header-content">이미지</a>
<a href="" class="header-content"><img src="img/img.jpg" width=20px height=20px></a>
<button class="header-content">로그인</button>
</header>
<section>Section</section>
<footer>Footer</footer>
</body>
</html>