generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsticky.html
More file actions
39 lines (36 loc) · 1.43 KB
/
sticky.html
File metadata and controls
39 lines (36 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Website Title -->
<title>Sticky Notes</title>
<!-- CSS Styling -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css" />
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
type="text/css" />
</head>
<body>
<section id="sticky-section">
<div class="main-container">
<div class="container1">
<button class="btn-style" onclick="typeNote">Create New Sticky</button>
</div>
<div class="container2"></div>
<div class="container3">
<textarea id="note-text" placeholder="Write Note..." maxlength="95"></textarea>
<i id="check-icon" class="fa fa-check-circle" aria-hidden="true"></i>
<i id="x-icon" class="fa fa-times-circle" aria-hidden="true"></i>
</div>
</div>
</section>
<!-- JavaScript -->
<script type="text/javascript" src="assets/js/sticky.js"></script>
</body>
</html>