-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·32 lines (29 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
executable file
·32 lines (29 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>this.append("CleverTitle")</title>
<link rel='stylesheet' type='text/css' href='stylesheet.css'/>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
</head>
<body class="body">
<div id="backdrop">
<h1>this.append("cleverTitle")</h1>
<div id="noteEntry">
<input id="noteTitle" type="text" name="title" value="Title"><br/><br/>
<textarea id="body" name="body" cols="70" rows="10"></textarea><br/>
<button id="saveNote" name="submit">Submit</button>
<button id="printNotes">Console Print</button>
</div>
<div id="previewArea">
</div>
<button id="delBut">Delete Note</button>
<div id="noteArea">
<h4 style="padding:0; margin:0;">Notes</h4>
<div id="inNoteArea">
</div>
</div>
</div>
</body>
</html>