-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>Broadway</title>
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
</head>
<body>
<div class="background">
<h1>Broadway Design</h1>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Process</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="white">
<h2>Our Process</h2>
<img src="resources/img/identify.svg" alt="arrow">
<h3>Identify</h3>
<p>We focus on the most important details.</p>
<img src="resources/img/understand.svg" alt="arrow">
<h3>Understand</h3>
<p>We study our projects inside and out.</p>
<img src="resources/img/execute.svg" alt="arrow">
<h3>Execute</h3>
<p>We put everything we have into our work.</p>
</div>
<h4>Designed in New York</h4>
<div class="white">
<h3>Portfolio</h3>
<p>Coming Soon</p>
<h3>Team</h3>
<p>We're Hiring!</p>
<h3>Contact</h3>
<p>
Phone: (555)-555-5555 <br />
E-mail: [email protected]<br />
Twitter: @test
</p>
</div>
</div>
<div class="footer">
<p>© Broadway 2017</p>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Process</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</body>
</html>