-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (63 loc) · 2.4 KB
/
index.html
File metadata and controls
64 lines (63 loc) · 2.4 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>
<link href="./resources/css/style.css" type="text/css" rel="stylesheet">
<meta charset="utf-8">
<title>BroadwayDesign</title>
</head>
<body>
<div id="wrapper">
<div id="top">
<header>
<h1>Broadway Design</h1>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="#process"><li>Process</li></a>
<a href="#work"><li>Work</li></a>
<a href="#team"><li>Team</li></a>
<a href="#contact"><li>Contact</li></a>
</ul>
</header>
</div>
<div id="process">
<h2>Our Process</h2>
<img src="resources/identify.svg">
<h3>Identify</h3>
<p>We focus on the most important details.</p>
<img src="resources/understand.svg">
<h3>Understand</h3>
<p>We study our projects inside and out</p>
<img src="resources/execute.svg">
<h3>Execute</h3>
<p>We put everything we have into our work</p>
</div>
<div id=midbanner>
<h3>Designed in New York</h3>
</div>
<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-555</p>
<p>E-mail: test@example.com</p>
<p>Twitter: @test</p>
</div>
<footer>
<ul>
<li class="copyright">© Broadway 2016</li>
<li><a href="#index.html">Home</a></li>
<li><a href="">About</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</footer>
</div>
</body>
</html>