-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 945 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (28 loc) · 945 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>My CrUDdy App</title>
<!--
TODO
add link to css
add link to our app
-->
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<script src="app.js"></script>
</head>
<body>
<div class="container">
<input class="input-field-title" type="text" placeholder="Enter the Title">
<textarea class="input-field-body" placeholder="Enter the content"></textarea> <!-- maybe switch to <div id='fake_textarea' contenteditable></div>-->
<button class="store-btn">store data</button>
<button class="get-btn">get data</button>
<button class="delete-btn">delete data</button>
<div class="item-display">
</div>
</div>
</body>
</html>