-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.57 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
<!DOCTYPE html>
<html lang="pt-br">
<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>Tab Notas</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="bar-details"></div>
<div class="bar-wrapper">
<span class="set-menu-dir" data-dir="top"></span>
<span class="set-menu-dir" data-dir="right"></span>
<span class="set-menu-dir" data-dir="bottom"></span>
<span class="set-menu-dir" data-dir="left"></span>
<nav class="menu-bar" data-dir="top">
<ul>
<li class="tab active" onclick="currentTab(this)">
<span class="close" onclick="removeTab(event)"></span>
<span class="name">-</span>
<input class="tab-content" type="text" hidden>
</li>
<li class="tab plus" onclick="addTab()">
<span>+</span>
</li>
</ul>
</nav>
<section class="tab-body">
<h3 class="title" contenteditable oninput="editTabName(this)">
</h3>
<p class="text" contenteditable>
<!-- dynamic -->
</p>
</section>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>