-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (50 loc) · 1.58 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
<!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" />
<title>Document</title>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1 class="text-center text-uppercase text-muted mt-3">Note Taker</h1>
<i class="far fa-moon icon-1"></i>
<!-- <i class="far fa-sun"></i> -->
<form>
<input
type="text"
name="fname"
placeholder="Title"
class="title form-control mt-3"
/><br />
<textarea
name="message"
placeholder="Write here..."
class="message-text form-control"
rows="3"
></textarea>
<input
type="submit"
class="btn-submit btn btn-primary mt-2 d-grid mx-auto col-6 mb-5"
value="Add"
/>
</form>
<div class="show-notes"></div>
<script src="script.js"></script>
</div>
</body>
</html>