-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.86 KB
/
Copy pathindex.html
File metadata and controls
43 lines (40 loc) · 1.86 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
<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">
<title>Notes</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
</head>
<body onload="count()">
<div class="flex-container">
<form name="noteForm">
Note:
<br>
<textarea id="note" rows="10" cols = "50"></textarea>
<br>
<input type="button" value="Store Note" class="button" onclick="storeNote()"></input>
<input type="button" value="Read Note" class="button" onclick="readNote()"></input>
</form>
<!-- <input type="button" id="reduceNote" value="Reduce Note" class="button" onclick="reduceNote()"></input> -->
<div class="count">
<p id="count">There are no notes!</p>
</div>
<div class="display">
<div class="message"><p id="message"></p></div>
</div>
<div class="nav">
<input type="button" value="Previous" class="button" onclick="previous()"></input>
<input type="button" value="Next" class="button" onclick="next()"></input>
<input type="button" value="Remove Note" class="button" onclick="clearNote()"></input>
</div>
<!-- <div class="nav">
<p onclick="previous()" ><i class="fas fa-arrow-circle-left fa-3x"></i></p>
<p onclick="next()"><i class="fas fa-arrow-circle-right fa-3x"></i></p>
</div> -->
</div>
<script src="driver.js"></script>
</body>
</html>