-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·160 lines (147 loc) · 4.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Creative Inc.">
<title>Creative Inc.</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<header>
<img class="logo" src="img/logo.png" alt="Creative Inc. logo">
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
</header>
<section class="home-hero">
<div class="container">
<h1 class="title">Making things look great
<span>for companies who make great stuff</span>
</h1>
<a href="#" class="button button-accent">See our work</a>
</div>
</section>
<div class="container">
<section class="home-about">
<div class="home-about-textbox">
<h2>Who we are</h2>
<p>
Sit by the fire drink water out of the faucet
hide head under blanket so no one can see cat
is love, cat is life. Knock dish off table
eating always hungry so favor packaging over toy.
</p>
<p>
<strong>Rub face on owner.</strong>
Peer out window, chatter at birds, lure
them to mouth. Chase ball of string eat
a plant, kil a hand, i am the best have
secret plans.
</p>
</div>
</section>
</div>
<hr>
<section class="portfolio">
<h2>Some of our work</h2>
<!-- portfolio item 01 -->
<figure class="port-item">
<img src="img/portfolio-01.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="#" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item 02 -->
<figure class="port-item">
<img src="img/portfolio-02.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="#" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item 03 -->
<figure class="port-item">
<img src="img/portfolio-03.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="#" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item 04 -->
<figure class="port-item">
<img src="img/portfolio-04.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="#" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item 05 -->
<figure class="port-item">
<img src="img/portfolio-05.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="#" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item 06 -->
<figure class="port-item">
<img src="img/portfolio-06.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="#" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
</section>
<section class="cta">
<div class="container">
<h1 class="title">Like what you see?
<span>Then what are you waiting for?</span>
</h1>
<a href="#" class="button button-dark">Hire Us</a>
</div>
</section>
<footer>
<div class="col-3">
<p>
Shoreditch bespoke leggings, tote bag williamsburg
woke retreo readymade scenester brunch art party
farm-to-table pug. Wayfarers lyft prism, edison
bulb distilery pok pok narwhal pinterest poke.
</p>
</div>
<div class="col-1">
<ul class="unstyled-list">
<li><strong>Shoreditch</strong></li>
<li>Shoreditch</li>
<li>Woke retro</li>
<li>Readymade</li>
<li>Scenester</li>
</ul>
</div>
<div class="col-1">
<ul class="unstyled-list">
<li><strong>Shoreditch</strong></li>
<li>Shoreditch</li>
<li>Woke retro</li>
<li>Readymade</li>
<li>Scenester</li>
</ul>
</div>
<div class="col-1">
<ul class="unstyled-list">
<li><strong>Shoreditch</strong></li>
<li>Shoreditch</li>
<li>Woke retro</li>
<li>Readymade</li>
<li>Scenester</li>
</ul>
</div>
</footer>
</body>
</html>