-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.html
More file actions
42 lines (33 loc) · 1.22 KB
/
note.html
File metadata and controls
42 lines (33 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta lang="eng">
<meta name="viewport" content="width=device-width">
<meta name="noteApp" description="note taking app">
<link rel="styleSheet" type='text/css' href='./css/note.css'>
<title>NoteBook/section</title>
</head>
<body>
<form action="" method="">
<div class="section_head">
<fig>
<img src="./image/book (1).jpg" width="85px" height="57px" alt="book_logo">
</fig>
<button type='button' onclick="location.href='index.html'">Create New</button>
</div>
<div id="note">
<div id='update_info_id'></div>
<div id='note_info_id'></div>
<div class='note_item'>
</div>
<div id="clock_div">
<aside id="inner_clock_id">Hours: Minutes: Seconds</aside>
<p id='timeInfo'>currently in 24hours</p>
</div>
</div>
<footer></footer>
</form>
<script src="./js/note.js"></script>
</body>
</html>