-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (33 loc) · 1.47 KB
/
about.html
File metadata and controls
36 lines (33 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Index</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body class="aboutPage">
<header>
<h1>I am the about page</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 | 3.jpg" alt="Alternative to image">
<h2>I am just a random 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>
<article>
<img src="assets/media/sampleImage | 4.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>