-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfirst.html
31 lines (28 loc) · 898 Bytes
/
first.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./first.css">
<script src="./first.js"></script>
<title>first page</title>
</head>
<body>
<div id="App">
<div id="my-page-nav">
<div id="logo">DukXi</div>
</div>
<div class="last-container">
<div class="last-content">
<img src="img/dukxi_logo1.png" class="dukxi" alt="Logo">
<div class ="text">
Let's go together !
</div>
<div class="button">
<button class="complete-button" onclick="login()">로그인 하기</button>
</div>
<button class="complete-button" onclick="signup()">회원가입 하기</button>
</div>
</div>
</body>
</html>