-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.13 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Notes</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section class="hero is-link is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">
Notes by Mertenz
</h1>
<h2 class="subtitle">
Type what you want ,Enter to add ,click to delete
<!--If you read this you are Gay af-->
</h2>
<ul class="list"></ul>
<input type="text" class="input is-small">
<button id="Rmbtn" class="button">Remove all</button>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>