-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (73 loc) · 2.8 KB
/
index.html
File metadata and controls
78 lines (73 loc) · 2.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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">
<title>JS</title>
<link rel="stylesheet" href="index.css">
<script src="toDolist.js" defer></script>
</head>
<body>
<header class="header">
<nav class="nav container">
<h2 class="logo"> Awesome Freaks</h2>
<ul class="nav-items">
<li><a href="LOL">Home</a></li>
<li><a href="">Todo</a></li>
<li><a href="">About</a></li>
<li><a href="">news</a></li>
<li><a href="">Sign up</a></li>
</ul>
</nav>
<div class="headline">
<h2 class="Heading-two">Manage your class</h2>
<button class="btn btn-headline">learn more</button>
</div>
</header>
<section class="todosection container bg-dark">
<h2> Let's start with your today plan</h2>
<form class="formList" action="">
<input type="text" name="" placeholder="Add Your Bucket List" id="">
<input type="submit" value="Add items" class="btn" name="addList">
</form>
<ul class="todo-list">
<!-- <li class="first-todo">____todo main____</li> -->
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
<li>item 4</li>
<li>item 5</li>
</ul>
</section>
<section class="section-signup container">
<h3>Sign Up</h3>
<form action="" class="signup-form">
<div class="form-group">
<label for="usernanme">Username</label>
<input type="text" name="usernanme" id="usernanme">
</div>
<div class="form-group">
<label for="password">password</label>
<input type="password" name="password" id="password">
</div>
<div class="form-group">
<label for="ConfirmPassword">Confirm password</label>
<input type="password" name="ConfirmPassword" id="ConfirmPassword">
</div>
<div class="form-group">
<label for="phone">Phone no.</label>
<input type="text" name="phone" id="phone">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" name="email" id="email">
</div>
<div class="form-group">
<label for="About">About Yourself</label>
<textarea type="about" id="about" cols="30" rows="10"></textarea>
</div>
<button type="submit" class="btn signup-btn" id="Submit">Submit</button>
</form>
</section>
</html>