-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (62 loc) · 3.03 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
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memo-site</title>
<link rel="stylesheet" href="./css/nomalize.css">
<link rel="stylesheet" href="./css/font.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="wrapper">
<div class="layout">
<header class="container">
<h1 class="page-title">Simple Memo <img src="./assets/nastar-icon.png" alt="nastar-icon"></h1>
<div class="memo">
<!-- 메모의 제목인풋 -->
<button type="button" class="color-select"></button>
<div class="color-list none">
<button type="button" class="yellow-btn none"></button>
<button type="button" class="green-btn none"></button>
<button type="button" class="pink-btn none"></button>
</div>
<input type="text" maxlength="15" id="memo-title" placeholder="제목입력 (15자이내)">
<textarea name="" maxlength="150" style="resize: none;" id="memo-content" cols="30" rows="10"
placeholder="내용입력"></textarea>
<div class="btn-group">
<button type="button" id="add-btn">메모 등록</button>
<button type="button" id="reset-btn">메모 초기화</button>
</div>
</div>
</header>
<section class="content">
<ul id="display">
<!-- <li class="memo-list">
<h3>메모제목</h3>
<p>메모내용</p>
<div>
<button>수정버튼</button>
<button>삭제버튼</button>
</div>
</li> -->
<!-- <li>
<h2>ㅇㄻㄴ</h2>
<p>ㅁㅇㄹㄴ</p>
<div>
<button id="0" onclick="colorChange()">color</button>
<button id="0" onclick="remove()">삭제</button>
<button class="color-select" type="button">
<i class="fa-solid fa-palette"></i>
</button>
button
</div>
</li> -->
</ul>
</section>
</div>
</div>
<script type="text/javascript" src="./localStorage.js"></script>
</body>
</html>