-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (75 loc) · 2.3 KB
/
index.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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <!--sets width based on device-->
<meta name="description" content="Online To-Do List">
<meta name="keywords" content="web design", "Online To-Do List">
<meta name="author" content="The Special Ones">
<title>Online To-Do List</title>
<link rel="stylesheet" href="./css/home.css">
</head>
<body>
<div id="content">
<header>
<div id="branding">
<h1>
Online To-Do List
</h1>
<h3>
By The Special Ones, Our submission for HackStreet 2.0
</h3>
</div>
</header>
<main>
<img src="img/show.jpg">
</main>
<section>
<h2>Welcome!</h2>
<p>
This is our submission for HackStreet 2.0.
By Aryan, Anitej, Kartikey and Vedant
<p>
</section>
<aside>
<ul>
<li>
<img src="img/html5icon.png">
<h4>HTML5 Markup</h4>
</li>
<li>
<img src="img/css3icon.png">
<h4>CSS Grid Responsive Layout</h4>
</li>
<li>
<img src="img/jsicon.png">
<h4>JavaScript DOM Manipulation</h4>
</li>
</ul>
<br>
<form>
<label for="sub">Subscribe to us:</label>
<input type="email" id="sub" placeholder="Enter Email...">
<button type="submit" class="button1">Subscribe</button>
</form>
</aside>
<nav>
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="todo.html">To-Do</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
<footer>
<p>The Special Ones © 2024</p>
</footer>
</div>
</body>
</html>