coin.html
1.36 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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name = " description" content ="Find coin karaoke by one`s location">
<meta name = " keywords" content = "karaoke, 동전, 노래방">
<meta name = "author" content = "Hyun Soo Yoo">
<style>
body {
background-color : background-color: rgb(1, 255, 200);
}
#title_message{
font-size:3rem;
font-weight: normal;
}
.input-medium-search-query{
width:1000px;
height:50px;
font-size:30px;
}
#move_button{
padding: 10px 13px;
background-color: #07C;
color: white;
border: none;
border-radius: 50px;
font-size:30px;
text-decoration: none;
}
</style>
<title>Coin_Karaoke</title>
</head>
<body>
<H1 id = "title_message">
<center>경기 남부 코인 노래방 검색창</center>
</H1>
<form class = "form">
<div style = "text-align:center">
<input type = "text" class ="input-medium-search-query"/>
<br><br>
<input id = "move_button" type = "button" value = "Gps" onclick = "movepage()"/>
</div>
<script type="application/javascript">
function movepage(){
location.href = "/map";
}
</script>
</form>
</body>