coin.html 1.36 KB
<!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>