-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.12 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="en">
<head>
<meta name="viewport" content="width=device-width,viewport-fit=cover" />
<title>Store notes and learning goals while you are coding</title>
<link rel="manifest" href="app.webmanifest?1" />
<link rel="stylesheet" href="styles.css" />
<script src="app.js"></script>
<script src="sw-register.js"></script>
<meta name="theme-color" content="#ffc252" />
<link rel="apple-touch-icon" href="icons/icon-512.png" />
</head>
<body>
<h1>Codepad Masters</h1>
<form>
<textarea placeholder="Enter your new note"></textarea>
<ul id="toolbar">
<li>
<button type="submit">
<span class="icon">save</span>
Save
</button>
</li>
</ul>
</form>
<ul id="toolbar">
<li>
<button id="btnShare">
<span class="icon">share</span>
Share
</button>
</li>
<li id="itemInstall">
<button id="btnInstall">
<span class="icon">download</span>
Install
</button>
</li>
</ul>
<ul id="notes"></ul>
</body>
</html>