-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
194 lines (122 loc) · 4.79 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Creative Inc.</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<header>
<img src="img/logo.png" alt="Creative inc. logo" class="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="contaier">
<h1 class="title">Making things looks 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">
<h1>Who we are</h1>
<p>Sit by the fire drink water out of the faucet hide head under banket 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><srong>Rub face on owner.</srong>Peer out window, chatter at birds, lure then to mouth. Chase ball of string eat a plant, kill a hand, i am the best have secret plans.</p>
</div>
</section>
</div>
<section class="portofolio">
<h1>Some of our work</h1>
<!-- portofolio item 01 -->
<figure class="port-item">
<img src="img/portfolio-01.jpg" alt="portofolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<!-- portofolio item 02 -->
<figure class="port-item">
<img src="img/portfolio-02.jpg" alt="portofolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<!-- portofolio item 03 -->
<figure class="port-item">
<img src="img/portfolio-03.jpg" alt="portofolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<!-- portofolio item 04 -->
<figure class="port-item">
<img src="img/portfolio-04.jpg" alt="portofolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<!-- portofolio item 05 -->
<figure class="port-item">
<img src="img/portfolio-05.jpg" alt="portofolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<!-- portofolio item 06 -->
<figure class="port-item">
<img src="img/portfolio-06.jpg" alt="portofolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<footer>
<div class="span-3">
<p>Shoreditch bespoke leggings, tote bag williamsburg woke retro readymade scenester brunch art party farm-to-table pug. Wayfarers lyft prism, edison bulb distillery pok pok narwhal pinterest poke.</p>
</div>
<div class="col-3">
<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>
<title></title>
<title></title>
</body>
</html>