-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (37 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
44 lines (37 loc) · 1.12 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
<!-- board 2.0 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="stylesheets\main.css">
<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
<title>Board</title>
</head>
<body>
<div class="header">
<h1>Board</h1>
<div class="current"></div>
</div>
<div class="board">
</div>
<div class="menu hide">
<div class="header">Drop or show menu</div>
<input type="color" style="display:none" placeholder="input" class="color">
<img src="img/palitra.jpg" class="btnColor">
<textarea placeholder="text" class="content"></textarea>
<button class="btnCreate">Create</button>
</div>
</body>
<div class="trash">
<div class="note template">
<div class="header"></div>
<div class="content"></div>
</div>
</div>
<div class="msgCotainer">
<div class="countErorr">Sorry, you have reached the limit of notes</div>
</div>
</html>