-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Note Taking app</title>
</head>
<body>
<nav>
<div><h1 id="active">Notes</h1></div>
<div><a href="https://harshbuttru3.github.io/todo/"><h1>TO DO App</h1></a></div>
</nav>
<div id="container">
<div id="sidebar">
<div class="sideName">
<div id="imageContainer">
<img id="image" src="image1.jpeg" alt="">
</div>
<h3 id="nameInput" contenteditable="true" >Name</h3></div>
<div class="notes" ><button id="display">Notes</button></div>
<div class="library"><a href="https://harshbuttru3.github.io/portfolio" style="text-decoration: none;"><button>My Portfolio</button></a></div>
</div>
<div id="maincontent">
<div id="btnsNotMove">
<div id="Inputs">
<input type="text" id="noteTitle" class="notes" placeholder="My Heading" required>
<textarea name="noteText" id="noteText" cols="100" rows="30" placeholder="write your note here" required></textarea>
</div>
<div id="btns">
<button id="displayMobile" class="mobile">Notes</button>
<button id="clearbtn">Clear</button>
<button id="save">Save</button>
</div>
</div>
</div>
<div id="displayNotes">
<div id="nav2">
<h1>My Notes</h1>
<button id="clearNotes">Clear notes</button>
</div>
<ul id="noteList"></ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>