-
Notifications
You must be signed in to change notification settings - Fork 5
/
welcome.html
37 lines (33 loc) · 1.11 KB
/
welcome.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
<!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="./welcome.css">
<script src="./welcome.js"></script>
<title>welcome</title>
</head>
<body>
<div class="header">
<div class="nav-container">
<a href="./home.html">홈</a>
<a href="board/board.html">게시판</a>
<a href="mypage/myPage.html">마이페이지</a>
</div>
</div>
<div class="last-container">
<div class="last-content">
<img src="img/dukxi_logo.png" alt="Logo">
<h3> <div style="margin-top: 26px;" class="inputTitle"></div>
<div class="inputWrap">
<input type="text" id="emailInput" class="textbox"> 님 환영해요!
</div>
<br> Dukxi를 바로 사용해볼까요?
</h3>
<div class="button">
<button class="complete-button" onclick="use()">사용해보기</button>
</div>
</div>
</div>
</body>
</html>