coin.html 1.56 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>
      div{
          height: 100vh;
          background-image: url('C:/Users/user/Documents/coinkaraoke/css/Sing.jpg');
          background-repeat : no-repeat;
          background-size : cover;
      }

      #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>
    
    <!-- <link rel="stylesheet" href="css/coin.css" type="text/css">-->
    <!-- link x -->
  </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>