mainpage.html
3.19 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="ko">
<head>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<style>
*{
font-family: 'Noto Sans KR', sans-serif;
list-style: none;
text-decoration: none;
border-collapse: collapse;
margin: 0px;
padding: 0px;
}
.headbar{
display:flex;
width:1535px;
height:50px;
margin-top:20px;
}
.title{
margin-left: 200px;
}
.title span{
margin-left: 10px
}
.button {
margin-top: 8px;
margin-left: 600px;;
}
.button span{
margin-left: 20px;
}
.intro{
position:fixed;
width: 1535px;
height:290px;
background-color: #40E0D0;
}
.des{
margin-top:120px;
margin-left: 230px;
}
.bar{
margin-bottom:15px;
}
.icon{
position:fixed;
top: 270px;
margin-left: 910px;
}
.icon span{
border:4px solid white;
border-radius:30%;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
margin-left:5px;
}
</style>
<div class="wrap">
<div class="headbar">
<div class ="title">
<span style="font-size: 22px;"><b>✧ 휴게소의 모든 것 ✧</b></span>
<span style="color:#0A9696">Everything Of Rest Area</span>
</div>
<div class = "button">
<span><a href="/login" style = "color: #0A9696;">Log in</a></span>
<span><a href="/sign_up" style = "color: #0A9696;">Sign up</a></span>
</div>
</div>
<div class="intro" style="background: #40E0D0">
<div class="des">
<div class="bar">
<hr size="6" width= "200px" color="white">
</div>
<div style="color:white; font-size: 32px;"><b>당신이 방문할 휴게소의 모든 정보,</b></div>
<div style="color: white; font-size:40px;"><b> 휴게소의 모든 것</b></div>
</div>
<div class="icon">
<span style="color:white; font-size:20px;"><a href = "/weather"><b>날씨</b></a></span>
<span style="color:white; font-size:20px;"><a href = "/menu"><b>메뉴</b></a></span>
<span style="color:white; font-size:20px;"><a href = "/lpg"><b>LPG</b></a></span>
</div>
</div>
</div>
</body>
</html>