-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (55 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
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Broadway Design</title>
<link href="resources/css/stylesheet.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<!-- Hero section -->
<div class="hero">
<h1>Broadway Design</h1>
<p><a class="hero-nav" href="#">Home</a></p>
<p><a class="hero-nav" href="#process">Process</a></p>
<p><a class="hero-nav" href="#work">Work</a></p>
<p><a class="hero-nav" href="#team">Team</a></p>
<p><a class="hero-nav" href="#contact">Contact</a></p>
</div>
<!-- Process section -->
<div class="process">
<h2>Our Process</h2>
<img src="resources/images/identify.svg"/>
<h3>Identify</h3>
<p>We focus on the most important details.</p>
<img src="resources/images/understand.svg" />
<h3>Understand</h3>
<p>We study our projects inside and out.</p>
<img src="resources/images/execute.svg" />
<h3>Execute</h3>
<p>We put everyting we have into our work.</p>
</div>
<!-- Designed section -->
<div class="designed">
<h2>Designed in New York</h2>
<h3>Portfolio</h3>
<p>Coming Soon</p>
<h3>Team</h3>
<p>We're Hiring!</p>
<h3>Contact</h3>
<p>Phone: (555)-555-5555</p>
<p>E-mail: [email protected]</p>
<p>Twitter: @test</p>
</div>
<!-- Footer section -->
<div class="footer">
<p>
© Broadway 2017
<a class="footer-nav" href="#">Home</a>
<a class="footer-nav" href="#">Process</a>
<a class="footer-nav" href="#">Work</a>
<a class="footer-nav" href="#">Team</a>
<a class="footer-nav" href="#">Contact</a>
</p>
</div>
</body>
</html>