-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (49 loc) · 2 KB
/
about.html
File metadata and controls
55 lines (49 loc) · 2 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Dev| About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<div id ="branding">
<h1>Web Dev</h1>
</div>
<nav>
<ul>
<li ><a href="index.html">Home</a></li>
<li class="current"><a href="index.html">About</a></li>
<li><a href="index.html">Services</a></li>
</ul>
</nav>
</div>
</header>
<section id ="newsletter">
<div class="container">
<h1>Subscribe to our newsletter</h1>
<form>
<input type="email" placeholder="Enter email">
<button type="submit" class="button1" >Subscribe</button>
</form>
</div>
</section>
<section id ="main">
<div class="container">
<article id="main-col">
<h1 class="page-title">About Us</h1>
<p>
Where does it come from?
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>
</article>
</div>
</section>
<footer>
<p>
Copyright ©
</p>
</footer>
</body>
</html>