-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (66 loc) · 2.02 KB
/
index.html
File metadata and controls
78 lines (66 loc) · 2.02 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Broadway Design</title>
<link rel="stylesheet" type="text/css" href=".\Resources\CSS\main.css">
</head>
<body>
<!-- Section - Header and Nav -->
<div id="header" class="section">
<h1>Broadway Design</h1>
<div class="nav">
<nav>
<a href="./index.html"><p>Home</p></a>
<a href="#process"><p>Process</p></a>
<a href="#portfolio"><p>Work</p></a>
<a href="#team"><p>Team</p></a>
<a href="#contact"><p>Contact</p></a>
</nav>
</div>
</div>
<!-- Section - Our Process -->
<div id="process" class="section">
<h2>Our Process</h2>
<!-- Identify -->
<img src=".\Resources\Images\identify.svg" alt="Identify">
<h4>Identify</h4>
<p>We focus on the most important details.</p>
<!-- Understand -->
<img src=".\Resources\Images\understand.svg" alt="Understand">
<h4>Understand</h4>
<p>We study our projects inside and out.</p>
<!-- Execute -->
<img src=".\Resources\Images\execute.svg" alt="Execute">
<h4>Execute</h4>
<p>We put everything we have into our work.</p>
</div>
<!-- Section - About -->
<div id="about" class="section">
<!-- Header -->
<h3>Designed in New York</h3>
<!-- Portfolio -->
<h4 id="portfolio">Portfolio</h4>
<p>Coming Soon</p>
<!-- Team -->
<h4 id="team">Team</h4>
<p>We're Hiring!</p>
<!-- Contact -->
<h4 id="contact">Contact</h4>
<p>Phone: (555)-555-5555 <br><br>E-mail: test@example.com <br><br>Twitter: @test</p>
</div>
<!-- Section - Footer -->
<div id="footer" class="section">
<footer>
<nav class="nav">
<span id="copyright">© Broadway 2017</span>
<a href="./index.html"><span>Home</span></a>
<a href="#process"><span>About</span></a>
<a href="#portfolio"><span>Work</span></a>
<a href="#team"><span>Team</span></a>
<a href="#contact"><span>Contact</span></a>
</nav>
</footer>
</div>
</body>
</html>