-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign.html
More file actions
60 lines (51 loc) · 2.56 KB
/
sign.html
File metadata and controls
60 lines (51 loc) · 2.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style1.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<style>
body{
width: 100%;
height: 100vh;
padding: 10px;
background-image: url('images/bgi8.JPG');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
<body>
<nav class="navbar-light" style="background-color: #FDB455;" >
<div class="container-fluid"style="font-family: 'Monoton', cursive;">
<img src="images/gh.jpg" id="logo"></li>
<a class="navbar-brand" href="#"style="font-weight:1000;font-family:'Satisfy', cursive;font-size:40px;color:white; padding: 0.4px;">
Beaver
</a>
</div>
</nav>
<div style="margin-top: 30px;margin-left: 20px;font-family: 'Bonheur Royale', cursive;font-size: 35px;font-weight: 1000;">
Gear up the busy beavers in you!!!<br>Create your to-do lists and get the job done quickly and hassle free.
</div>
<div class="wrapper"style="margin-top:20px;margin-left:20px">
<header style="font-family:'Noticia Text', serif;font-size:40px;">Todo</header>
<div class="inputField">
<input type="text" style="font-family:'Satisfy', cursive;font-size: 20px;font-weight: 900;" placeholder=" Add your new todo">
<button><i class="fas fa-file-alt"></i></button>
</div>
<ul class="todoList">
</ul>
<div class="footer">
<span style="font-family:'Lobster Two', cursive ;font-size: 20px;"><span class="pendingTasks" style="font-family:'Lobster Two', cursive ;"></span> tasks yet to complete.</span>
<button style="font-family:'Frank Ruhl Libre', serif;font-size: 20px;">Clear All</button>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>