-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 969 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 969 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Notes</title>
<meta name="description" content="Some cleaver description about this website" />
<link rel="stylesheet" href="styles/normalize.css" />
<link rel="stylesheet" href="styles/main.css" />
</head>
<body>
<header class="header">
<h1>My Notes</h1>
<form class="header-form clearfix">
<input type="text" name="note_title" placeholder="Title" class="note-title" />
<textarea placeholder="Take a note..." name="note_content" class="note-content" rows="3"></textarea>
<button type="submit">DONE</button>
</form>
</header>
<main class="note-container clearfix">
</main>
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/main.js"></script>
</body>
</html>