-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (95 loc) · 2.54 KB
/
index.html
File metadata and controls
95 lines (95 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Web Company</title>
<meta name="generator" content="BBEdit 10.5" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="contact.html">contact us</a></li>
<li><a href="signin.html">sign in</a></li>
</ul>
</nav>
<header>
<h1>Logo</h1>
</header>
<main>
<div id="mission">
<h1>Our Mission</h1>
<p class="wrapper">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text since ever since the 1500</p>
</div>
<div id="about">
<h1>About</h1>
<p class="wrapper">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text since ever since the 1500</p>
</div>
<div id="team">
<h1>Team</h1>
<ul>
<li>
<figure>
<img src="images/john_doe_ceo.png" alt="john doe ceo">
<figcaption>John Doe<span>Founder & CEO</span></figcaption>
</figure>
</li>
<li>
<figure>
<img src="images/john_doe_co_founder.png" alt="john doe founder">
<figcaption>John Doe<span>Co-Founder</span></figcaption>
</figure>
</li>
<li>
<figure>
<img src="images/john_doe_investor.png" alt="john doe investor">
<figcaption>John Doe<span>Investor</span></figcaption>
</figure>
</li>
</ul>
<p class="workwithus">
<a href="workwithus.html">Work With Us</a>
</p>
</div>
<div id="map">
<img src="images/main_map.png" alt="main map">
<ul>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
<li>
<a href="workwithus.html">Work With Us</a>
</li>
</ul>
<ul class="social">
<li>
<a href="facebook.com"><img src="images/facebook.png"></a>
</li>
<li>
<a href="twitter.com"><img src="images/twitter.png"></a>
</li>
<li>
<a href="gmail.com"><img src="images/mail.png"></a>
</li>
</ul>
</div>
</main>
<footer>
<ul>
<li>
<a href="privacy.html">Privacy Policy</a>
</li>
<li>
<a href="terms">Terms and Conditions</a>
</li>
<li>© Company LLC 2015</li>
</ul>
</ul>
</footer>
</body>
</html>