-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.48 KB
/
index.html
File metadata and controls
44 lines (42 loc) · 1.48 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
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Note taking app</title>
<link rel="stylesheet" href="css/mystyles.css">
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script>
</head>
<body>
<section class="hero is-primary">
<div class="hero body">
<div class="container">
<h1 class="title">Note taking app</h1>
<h2 class="subtitle">Add, modify and delete your notes</h2>
</div>
</div>
</section><!--the hero section-->
<section class="section">
<div class="container">
<div class="field">
<label class="label">Your note</label>
<div class="control">
<textarea class="textarea" placeholder="write the text of your note"></textarea>
</div>
</div>
<button class="button is-primary is-outlined add-new-note">
create new note
</button>
</div>
</section><!--create new note-->
<section class="section">
<div class="container">
<div class="columns is-multiline is-centered" id="note-item">
<!--here will be generated notes-->
</div>
</div>
</section>
</body>
<script src="script.js"></script>
</html>