-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
64 lines (63 loc) · 1.99 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css?family=Poppins&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>인편단심-INPEN,DANSIM</title>
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<link
href="https://fonts.googleapis.com/css?family=Poppins&display=swap"
rel="stylesheet"
/>
<link href="./main.css" rel="stylesheet" />
<title>Document</title>
</head>
<body>
<div class="header">
<div class="header__coloumn">
<div class="logo"></div>
<a href="#">oooo</a>
<a href="#">ooooo</a>
</div>
<div class="header__coloumn column-right">
<a
href="javascript:openWindowPop('login_page.html', 'popup');"
class="header__login"
>로그인하기</a
>
<a href="#" class="header__sign-up">회원가입</a>
</div>
</div>
<div class="empty-box cover cover-first">
<div class="content-left">
<span class="content-text"
>육군 공군 해군 해병대 모든 인터넷 편지를 한곳에서 쉽고 간편하게
보내세요</span
>
<div class="start"><a href="#">바로 시작하기</a></div>
</div>
</div>
<div class="empty-box cover cover-second"></div>
<div class="empty-box cover cover-third"></div>
</body>
</html>
<script>
//javascript
function openWindowPop(url, name) {
var options =
"top=100, left=500, width=420, height=400, status=no, menubar=no, toolbar=no, resizable=no";
window.open(url, name, options);
}
</script>
</body>
</html>