-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (58 loc) · 1.67 KB
/
index.html
File metadata and controls
59 lines (58 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome to NoteTaking App</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f7fafc;
margin: 0;
padding: 0;
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
}
.container {
background: #fff;
padding: 2rem 3rem;
border-radius: 12px;
box-shadow: 0 4px 24px rgba(0,0,0,0.08);
text-align: center;
}
h1 {
color: #2d3748;
margin-bottom: 0.5em;
}
p {
color: #4a5568;
margin-bottom: 1.5em;
}
.btn {
background: #3182ce;
color: #fff;
padding: 0.75em 2em;
border: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
text-decoration: none;
transition: background 0.2s;
}
.btn:hover {
background: #2563eb;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to NoteTaking App</h1>
<p>Your simple and secure place to take notes and stay organized.</p>
<!-- <a href="http://127.0.0.1:8000/items" class="btn" id="getStartedBtn">Get Started</a> -->
<a href="http://127.0.0.1:8000/home" class="btn" id="getStartedBtn">Get Started</a>
<!-- <a href="home.html" class="btn" id="getStartedBtn">Get Started</a> -->
</div>
</body>
</html>