Page 66 - MDP2020-2
P. 66

|    인천전자마이스터고등학교  ·············································································································
            60


            -index1
             <!DOCTYPE  html>
             <html>
             <head>
                     <meta  charset="UTF-8">
                     <!--  한글  인코딩  깨짐  방지  -->

                     <link  rel="stylesheet"  href="static/style1.css?ver=1">
                     <link  rel="stylesheet"  href="style1.css">
                     <!--  style1.css를  index1.html에  적용시킨다.  -->


             </head>
             <body>
                     <div  class="container">
                             <div  class="header">
                                     <h1>사용자를  고르시오</h1>
                                     <!--  본문  작성  -->
                             </div>
                             <button  class  =  "button"  onclick="home()">OWNER</button>
                             <!--  "OWNER"  글자를  가진  버튼  생성  &  클릭시  home()  함수  실행-->
                             <button  class  =  "button"  onclick="visit()">VISITER</button>
                             <!--  "VISITER"  글자를  가진  버튼  생성  &  클릭시  visit()  함수  실행  -->
                     </div>
                     <script>
                             function  home(){
                                     location.href="/house"
                             }
                             //  "/house"  주소를  지닌  index2.html으로  화면  전환
                             function  visit(){
                                     location.href="/key"
                             }
                             //  "/house"  주소를  지닌  index3.html으로  화면  전환
                     </script>
             </body>
             </html>
   61   62   63   64   65   66   67   68   69   70   71