Showing
1 changed file
with
42 additions
and
0 deletions
passport_ex/first.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html lang="ko"> | ||
3 | + <head> | ||
4 | + <meta charset="UTF-8"> | ||
5 | + <title>최초 창</title> | ||
6 | + <style> | ||
7 | + #container { | ||
8 | + width:600px; | ||
9 | + margin:10px auto; | ||
10 | + } | ||
11 | + </style> | ||
12 | + <link rel="stylesheet" href="first.css"> | ||
13 | + </head> | ||
14 | + <body> | ||
15 | + <div id="container"> | ||
16 | + <h1>'프로그램명'을 방문해주셔서 감사합니다.</h1> | ||
17 | + | ||
18 | + <input type="button" value="login" onclick="movepage()"/><script type="text/javascript"> | ||
19 | + function movepage() { | ||
20 | + location.href = "/login"; | ||
21 | + } | ||
22 | + </script> | ||
23 | + | ||
24 | + <input type="button" value="register" onclick="movepage1()"/> | ||
25 | + <script type="text/javascript"> | ||
26 | + function movepage1() { | ||
27 | + location.href = "/join"; | ||
28 | + } | ||
29 | + </script> | ||
30 | + | ||
31 | + <footer> | ||
32 | + <div> | ||
33 | + <p><b>developed by 강희주, 진재영, 김재욱</b></p> | ||
34 | + <address>Contact for more information. 010-2400-6771</address> | ||
35 | + <img style="width: 30%; height: 30%; float: right;" src="https://blog.kakaocdn.net/dn/bjsDsi/btqxXJM3JKe/WAK7xHbOm7kxyVqRIvoOaK/img.jpg" alt="경희대 마크"> | ||
36 | + </div> | ||
37 | + </footer> | ||
38 | + | ||
39 | + </div> | ||
40 | + | ||
41 | + </body> | ||
42 | +</html> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment