unfinished notes
This commit is contained in:
parent
11b3210dcc
commit
96d4722500
3 changed files with 155 additions and 0 deletions
26
notes/index.html
Normal file
26
notes/index.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Notes</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="top">
|
||||
<button id="new-note">New Note</button>
|
||||
<span id="editing"></span>
|
||||
</div>
|
||||
<div class="main">
|
||||
<div class="left" id="left">
|
||||
<div id="notes"></div>
|
||||
</div>
|
||||
<div class="editor" id="editor">
|
||||
<textarea name="editor" id="editor-area" placeholder="Enter Text Here..."></textarea>
|
||||
<h1 class="hint">Click on "New Note" and click on the new note to open it!</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="index.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue