-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (75 loc) · 2.26 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<link href="./resources/css/style.css" type="text/css" rel="stylesheet">
<meta charset="utf-8">
<title>Broadway Design</title>
</head>
<body>
<!-- Hero Section -->
<div class="hero">
<h1>Broadway Design</h1>
<p><a class="btn-nav" href="#">Home</a></p>
<p><a class="btn-nav" href="#process">Process</a></p>
<p><a class="btn-nav" href="#work">Work</a></p>
<p><a class="btn-nav" href="#team">Team</a></p>
<p><a class="btn-nav" href="#contact">Contact</a></p>
</div>
<!-- Our Process Section -->
<div class="supporting" id="process">
<h2>Our process</h2>
<div class="supporting-item">
<img src="resources/images/identify.svg"/>
<h3>Identify</h3>
<p>We focus on the most important details.</p>
</div>
<div class="supporting-item">
<img src="resources/images/understand.svg"/>
<h3>Understand</h3>
<p>We study our projects inside and out.</p>
</div>
<div class="supporting-item">
<img src="resources/images/execute.svg"/>
<h3>Execute</h3>
<p>We put everything we have into our work.</p>
</div>
</div>
<!-- Mini Hero Section -->
<div class="hero">
<h2>Designed in New York</h2>
</div>
<!-- Work Section -->
<div class="supporting" id="work">
<div class="supporting-item">
<h3>Portfolio</h3>
<p>Coming Soon</p>
</div>
</div>
<!-- Team Section -->
<div class="supporting" id="team">
<div class="supporting-item">
<h3>Team</h3>
<p>We're Hiring!</p>
</div>
</div>
<!-- Contact Section -->
<div class="supporting" id="contact">
<div class="supporting-item">
<h3>Contact</h3>
<p>Phone: (555)-555-5555</p>
<p>E-mail: [email protected]</p>
<p>Twitter: @test</p>
</div>
</div>
<!-- Footer Section -->
<div class="footer">
<p>© Broadway 2017
<a class="btn-nav" href="#">Home</a>
<a class="btn-nav" href="#about">About</a>
<a class="btn-nav" href="#work">Work</a>
<a class="btn-nav" href="#team">Team</a>
<a class="btn-nav" href="#contact">Contact</a>
</p>
</div>
</body>
</html>