-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 3.53 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
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body class="p-5">
<section class="d-flex flex-column align-items-center my-5 mx-5">
<h1 class="h1 text-primary">QodsDev Sticky Note</h1>
<input type="text" class="form-control" id="note" placeholder="Enter your note here...">
<div class="w-100 mt-5 d-flex justify-content-between">
<div>
<svg xmlns="http://www.w3.org/2000/svg" role="button" width="25" height="25" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" fill="blueviolet" cy="8" r="8"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" role="button" width="25" height="25" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" fill="lightblue" cy="8" r="8"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" role="button" width="25" height="25" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" fill="yellow" cy="8" r="8"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" role="button" width="25" height="25" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" fill="orange" cy="8" r="8"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" role="button" width="25" height="25" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" fill="pink" cy="8" r="8"/>
</svg>
</div>
<div>
<button class="btn btn-danger pb-3">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-eraser" viewBox="0 0 16 16">
<path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828l6.879-6.879zm2.121.707a1 1 0 0 0-1.414 0L4.16 7.547l5.293 5.293 4.633-4.633a1 1 0 0 0 0-1.414l-3.879-3.879zM8.746 13.547 3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293l.16-.16z"/>
</svg>
</button>
<button class="btn btn-info pb-3">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-file-earmark-plus" viewBox="0 0 16 16">
<path d="M8 6.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V9.5H6a.5.5 0 0 1 0-1h1.5V7a.5.5 0 0 1 .5-.5z"/>
<path d="M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5L14 4.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5h-2z"/>
</svg>
</button>
</div>
</div>
<div class="container my-5">
<div class="row">
</div>
</div>
</section>
<script src="js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>