-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.5 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Index</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body class="homepage">
<header>
<h1>I am the homepage</h1>
<nav>
<a href="index.html"><button>Home</button></a>
<a href="about.html"><button>About</button></a>
<a href="contact.html"><button>Contact</button></a>
</nav>
</header>
<main>
<article>
<img src="assets/media/sampleImage | 1.jpg" alt="Alternative to image">
<h2>I am an h2 heading</h2>
<p><span class="forSpace"></span>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quaerat nulla sequi harum similique excepturi repudiandae nam veniam quae atque at! Voluptatibus ad cum architecto provident quasi deleniti error. Fuga, facilis?</p>
</article>
<article>
<img src="assets/media/sampleImage | 2.jpg" alt="Alternative to second image">
<h2>I am just another heading</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quaerat nulla sequi harum similique excepturi repudiandae nam veniam quae atque at! Voluptatibus ad cum architecto provident quasi deleniti error. Fuga, facilis?</p>
</article>
</main>
<footer>
<p>Developed by: Sahil Kapoor ©2019</p>
</footer>
</body>
</html>