-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
72 lines (57 loc) · 2.3 KB
/
about.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Note It!!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<!--
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">-->
<style>
.hi {
background-color: lightgrey;
width: 800px;
border: 15px green;
padding: 5rem;
margin: 10px;
padding-left: 4rem;
}
.hello{
padding-left: 20rem;
padding-top: 7rem;
}
</style>
</head>
<body>
<div class="header">
<div class="container">
<nav id="main-nav" class="flex items-cen justify">
<div class="left flex items-cen">
<a href="index.html" style="font-size:22px; font-weight: bold;" >Note Make!!</a>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
</div>
</div>
</div>
</nav>
</div>
<div class="hello">
<div class="hi">
Hello there, this is a webApp which helps you to organise your studies,your office and your
household.By noting down here you can easily remind the chores to be done.
<br> <u><b>Some common instructions:</b></u>
<br> To create note: Click on create note button.
<br> To delete the note: Double click on the note.
</div>
</div>
</body>
</html>