Showing
6 changed files
with
102 additions
and
0 deletions
views/2.jpg
0 → 100644
204 KB
views/error.ejs
0 → 100644
views/index - 복사본.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/index.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/main.ejs
0 → 100644
| 1 | +<!DOCTYPE <!DOCTYPE html> | ||
| 2 | +<html> | ||
| 3 | + | ||
| 4 | +<head> | ||
| 5 | + <meta charset="utf-8" /> | ||
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| 7 | + <title>Page Title</title> | ||
| 8 | + | ||
| 9 | + <!-- font --> | ||
| 10 | + <link href="https://fonts.googleapis.com/css?family=Nanum+Brush+Script&subset=korean" rel="stylesheet"> | ||
| 11 | + <link href="https://fonts.googleapis.com/css?family=Yeon+Sung&subset=korean" rel="stylesheet"> | ||
| 12 | + | ||
| 13 | + <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| 14 | + <link rel="stylesheet" type="text/css" media="screen" href="main.css" /> | ||
| 15 | + <script src="main.js"></script> | ||
| 16 | + | ||
| 17 | + <!-- 합쳐지고 최소화된 최신 CSS --> | ||
| 18 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | ||
| 19 | + | ||
| 20 | + <!-- 부가적인 테마 --> | ||
| 21 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> | ||
| 22 | + | ||
| 23 | + <!-- 합쳐지고 최소화된 최신 자바스크립트 --> | ||
| 24 | + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> | ||
| 25 | + | ||
| 26 | + <style type="text/css"> | ||
| 27 | + html, | ||
| 28 | + { | ||
| 29 | + margin: 0; | ||
| 30 | + padding: 0; | ||
| 31 | + } | ||
| 32 | + | ||
| 33 | + body { | ||
| 34 | + margin: 0; | ||
| 35 | + padding: 0; | ||
| 36 | + | ||
| 37 | + /* background-image: url('background.jpg'); | ||
| 38 | + background-repeat: no-repeat; | ||
| 39 | + background-size: cover; */ | ||
| 40 | + /* background: linear-gradient( to bottom, #fbc2eb, #a6c1ee ); */ | ||
| 41 | + } | ||
| 42 | + | ||
| 43 | + h1 { | ||
| 44 | + color: white; | ||
| 45 | + font-family: 'Nanum Brush Script', cursive; | ||
| 46 | + } | ||
| 47 | + | ||
| 48 | + label { | ||
| 49 | + color: white; | ||
| 50 | + font-size: 20px; | ||
| 51 | + font-family: 'Yeon Sung', cursive; | ||
| 52 | + } | ||
| 53 | + | ||
| 54 | + #banner { | ||
| 55 | + position: absolute; | ||
| 56 | + top: 0; | ||
| 57 | + width: 100%; | ||
| 58 | + } | ||
| 59 | + | ||
| 60 | + #footer { | ||
| 61 | + position: absolute; | ||
| 62 | + bottom: 0; | ||
| 63 | + width: 100%; | ||
| 64 | + height: 50px; | ||
| 65 | + text-align: center; | ||
| 66 | + font-family: 'Yeon Sung', cursive; | ||
| 67 | + color: white; | ||
| 68 | + } | ||
| 69 | + </style> | ||
| 70 | + | ||
| 71 | +</head> | ||
| 72 | + | ||
| 73 | +<body> | ||
| 74 | + <img src="images/background.jpg" alt="" style="z-index:-1; min-width: 100%; min-height: 100%"> | ||
| 75 | + <div id="banner"> | ||
| 76 | + <div style="width:100%; text-align: center; padding-top:170px;"> | ||
| 77 | + <h1 style="font-size:90px;">당신이 지금 죽을 확률은?</h1> | ||
| 78 | + </div> | ||
| 79 | + <br><br><br> | ||
| 80 | + <div style="width:100%; text-align: center;"> | ||
| 81 | + <form action="/starting" method="post"> | ||
| 82 | + <div class="form-inline"> | ||
| 83 | + <label>이름</label> | ||
| 84 | + <input type="text" name="name" class="form-control" placeholder="김철수" style="width:200px;"> | ||
| 85 | +       | ||
| 86 | + <label>생년월일</label> | ||
| 87 | + <input type="text" name="birth" class="form-control" placeholder="971009" style="width:200px;"> | ||
| 88 | + <br><br><br> | ||
| 89 | + <input type="submit" value="시작하기" class="btn btn-default" style="font-family: 'Yeon Sung', cursive; width:100px;font-weight: bold; font-size: 18px; background-color: white;"> | ||
| 90 | + </div> | ||
| 91 | + </form> | ||
| 92 | + </div> | ||
| 93 | + | ||
| 94 | + </div> | ||
| 95 | + | ||
| 96 | + <div id="footer">오픈소스SW개발 조민지 강환석 배희수</div> | ||
| 97 | +</body> | ||
| 98 | + | ||
| 99 | +</html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/re.ejs
0 → 100644
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment