-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (63 loc) · 1.98 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
68
69
70
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Broadway Design</title>
<link rel="stylesheet" href="resources/css/style.css" type="text/css">
</head>
<body>
<!-- Header section with navigation -->
<div id="hero">
<h1>Broadway Design</h1>
<nav>
<p><a class="nav" href="#">Home</a></p>
<p><a class="nav" href="#process">Process</a></p>
<p><a class="nav" href="#work">Work</a></p>
<p><a class="nav" href="#team">Team</a></p>
<p><a class="nav" href="#contact">Contact</a></p>
</nav>
</div>
<!-- Process information section -->
<div id="process">
<h2>Our Process</h2>
<p><img src="resources/images/identify.svg" alt="Identify Arrow"></p>
<h3>Identify</h3>
<p>We focus on the most important details.</p>
<p><img src="resources/images/understand.svg" alt="Understand Arrow"></p>
<h3>Understand</h3>
<p>We study our projects inside and out.</p>
<p><img src="resources/images/execute.svg" alt="Execute Arrow"></p>
<h3>Execute</h3>
<p>We put everything we have into our work.</p>
</div>
<!-- Designed in New York section -->
<div id="hero">
<h3>Designed in New York</h3>
</div>
<!-- Portfolio, Team and Contact section -->
<div id="work">
<h3>Portfolio</h3>
<p>Coming Soon</p>
</div>
<div id="team">
<h3>Team</h3>
<p>We're Hiring!</p>
</div>
<div id="contact">
<h3>Contact</h3>
<p>Phone: (555)-555-5555</p>
<p>E-mail: [email protected]</p>
<p>Twitter: @test</p>
</div>
<!-- Footer section with navigation -->
<div id="footer">
<p>© Broadway 2017
<a class="nav" href="#">Home</a>
<a class="nav" href="#process">Process</a>
<a class="nav" href="#work">Work</a>
<a class="nav" href="#team">Team</a>
<a class="nav" href="#contact">Contact</a>
</p>
</div>
</body>
</html>