-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.html
More file actions
117 lines (97 loc) · 2.2 KB
/
main.html
File metadata and controls
117 lines (97 loc) · 2.2 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
107
108
109
110
111
112
113
114
115
116
117
<!-- made by 임경수 -->
<html>
<head>
<title>first django project</title>
<script src="https://kit.fontawesome.com/eb782002a4.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">
<style>
html{
font-family: 'Jua', sans-serif;
}
body{
background-color:grey;
padding:0px;
}
#header{
width:100%;
font-size:5vmax;
text-align:center;
color : black;
margin-top:50px;
margin-bottom:50px;
}
#menus{
width:100%;
height:70%;
padding:0px;
margin:0px;
}
#menus li{
list-style:none;
text-decoration : none;
float:left;
width:250px;
height:400px;
margin:50px 20px;
}
#menus li>i{
color:black;
font-size:200px;
position:relative;
left:9px;
}
#menus li>a{
display:block;
font-size: 3vmax;
text-decoration:none;
color:black;
width:100%;
text-align:center;
margin-top:50px;
transition: all 0.5s;
}
#menus li>a:hover{
color:yellow;
transform:scale(1.2);
}
#footer{
position:fixed;
bottom:0;
}
#footer>button{
float:left;
}
#footer>p{
float:left;
}
</style>
</head>
<body>
<div id="ques_field"></div>
<div id="header">메뉴 선택하세요</div>
<div id="menus">
<ul>
<li>
<i class="fas fa-hat-wizard fa-fw"></i>
<a href="/akinator" onmouseover = "question(0)"
onmouseout="clears()" >밥키네이터</a></li>
<li>
<i class="fas fa-utensils fa-fw"></i>
<a href="/ressearch" onmouseover = "question(1)"
onmouseout="clears()">식당이름검색</a></li>
<li>
<i class="fas fa-clipboard-list fa-fw"></i>
<a href="/mnsearch" onmouseover = "question(2)"
onmouseout="clears()">식당메뉴검색</a></li>
<li>
<i class="far fa-money-bill-alt fa-fw"></i>
<a href="/prsearch" onmouseover = "question(3)"
onmouseout="clears()">가격대검색</a></li>
<li>
<i class="fas fa-sync fa-spin fa-fw" ></i>
<a href="/correction" onmouseover = "question(4)"
onmouseout="clears()">건의사항</a></li>
</ul>
</div>
</body>
</html>