-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.69 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- ============ CSS STYLE========== -->
<link rel="stylesheet" href="./assets/style.css">
<!-- ===== ggole font ================ -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@700&family=Noto+Sans:wght@300;400&display=swap"
rel="stylesheet">
<title>90s ToDo App</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@500&display=swap');
</style>
</head>
<body>
<h1>ToDo App by Maisha Maliha</h1>
<p>
This website has been built using pure NODEJS and MongoDB. This to show a simple demostration of CRUD operation without any Nodejs Framework.
</p>
<section>
<header>
<span></span>
<span></span>
</header>
<div class="makelist">
<h2>WHAT TO DO? <img src="./assets/media/smiling.png" alt=""></h2>
<form method="post" action="/" accept-charset="utf-8" enctype="text/plain">
<input type="text" name="head" placeholder="What could the title be? Hmm.. :P" required>
<textarea name="body" placeholder="Tell me MORE !!" required></textarea>
<button type="submit">Let's Do This !</button>
</form>
</div>
</section>
<div class="todo_list"></div>
<script type="module" src="./view/createlist.js"></script>
</body>
</html>