-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreate.html
More file actions
56 lines (36 loc) · 1.2 KB
/
create.html
File metadata and controls
56 lines (36 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>randing_page</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<!-- <link href="https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap" rel="stylesheet">-->
</head>
<body>
<section id="container">
<header id="header">
<div><img src="src/bookmark.png" alt="북마크아이콘"></div>
<div>BOOK-MARK</div>
</header>
<section class="btn_container">
<button class="home"><a href="index.html" class="home">HOME</a></button>
<button class="create active"><a href="create.html" class="create active">CREATE</a></button>
</section>
<section id="edit_container">
<form action="">
<div>
<label for="site_name">사이트명:</label>
<input type="text" id="site_name">
</div>
<div>
<label for="url_adress">주소:</label>
<input type="text" id="url_adress">
</div>
</form>
<button class="create">create!</button>
</section>
</section>
<script src="js/main.js"></script>
</body>
</html>