-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 830 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css">
<title>Notes</title>
</head>
<body>
<div class="container my-5">
<h1 class="mb-5">Notes</h1>
<div class="card mb-5">
<div class="card-body">
<div class="mb-3">
<textarea class="form-control" placeholder="Enter Note Contents..." id="contents"></textarea>
</div>
<button class="btn btn-primary" onclick="addNote();" id="action">Create</button>
</div>
</div>
<div class="mb-5" id="notes"></div>
<p>Developed by <a href="https://robertd.co.uk">Robert Dixon</a></p>
</div>
<script src="js/script.js"></script>
</body>
</html>