This repository was archived by the owner on Jul 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (53 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
64 lines (53 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<title>Broadway Design</title>
<link rel="stylesheet" type="text/css" href="./resources/css/index.css">
</head>
<body>
<div class="banner" id="top">
<h1 class="title">Broadway Design</h1>
<nav class="nav">
<p><a href="#top">Home</a></p>
<p><a href="#process">Process</a></p>
<p><a href="#work">Work</a></p>
<p><a href="#team">Team</a></p>
<p><a href="#contact">Contact</a></p>
</nav>
</div>
<div id="process">
<h2 class="heading">Our Process</h2>
<div id="identify">
<img src="./resources/photos/identify.svg">
<h3 class="subheading">Identify</h3>
<p>We focus on the most important details.</p>
</div>
<div id="understand">
<img src="./resources/photos/understand.svg">
<h3 class="subheading">Understand</h3>
<p>We study our projects inside and out.</p>
</div>
<div id="execute">
<img src="./resources/photos/execute.svg">
<h3 class="subheading">Execute</h3>
<p>We put everything we have into our work.</p>
</div>
</div>
<h3 class="banner subheading">Designed in New York</h3>
<div id="work">
<h3 class="subheading">Portfolio</h3>
<p>Coming Soon</p>
</div>
<div id="team">
<h3 class="subheading">Team</h3>
<p>We're Hiring!</p>
</div>
<div id="contact">
<h3 class="subheading">Contact</h3>
<p>Phone: (555)-555-5555<br>E-mail: test@example.com<br>Twitter: @test</p>
</div>
<div class = "footer">
<p>© Broadway 2016 <a href="">Home</a><a href="">Process</a><a href="">Work</a><a href="">Team</a><a href="">Contact</a></p>
</div>
</body>
</html>