-
Notifications
You must be signed in to change notification settings - Fork 0
/
components.html
317 lines (278 loc) · 14.7 KB
/
components.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- title and description -->
<meta name="description" content="This is a website about ...">
<title>Components Site</title>
<!-- icons -->
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<!-- css -->
<link rel="stylesheet" href="styles/style.css"> <!-- link to CSS file e.g. "../style.css" -->
</head>
<body>
<!-- Atoms -->
<!-- typography -->
<h1>Components Page</h1>
<h1><em>Emphasized</em></h1>
<h2>This is a second heading</h2>
<h3>Third heading</h3>
<h4>Fourth heading</h4>
<p>Normal p text</p>
<p class="date-time">Posted at</p>
<time class="date-time" datetime="2020-04-07">7th April, 2020</time>
<ul>
<li><a href="#">Link List Text</a></li>
</ul>
<!-- .nav-text -->
<a href="#" class="nav-text">nav bar text</a>
<!-- .link-text -->
<a href="http://" class="link-text">Link Text</a>
<!-- icons -->
<button class="icon">
<img src="images/icons/search1.svg" alt="magnifying glass icon" />
</button>
<a class="icon" href="http://twitter.com">
<img src="images/icons/twitter1.svg" alt="twitter icon" />
</a>
<a href="http://facebook.com" class="icon">
<img src="images/icons/facebook-f1.svg" alt="facebook icon" />
</a>
<br><br>
<a href="http://youtube.com" class="icon">
<img src="images/icons/youtube1.svg" alt="youtube icons" />
</a>
<br><br>
<a href="http://instagram.com" class="icon">
<img src="images/icons/instagram1.svg" alt="instagram icon" />
</a>
<br><br>
<button class="small-nav">
<img src="images/icons/bars1.svg" alt="menu selection bars icon" />
</button>
<br><br>
<!-- buttons -->
<button class="category-button">blue button</button>
<input type="submit" class="submit-button" value="Send Message"/>
<br>
<br>
<!-- form label -->
<label for="name">Label</label>
<br>
<!-- input -->
<input type="text" name="" id="name" />
<br>
<!-- textarea -->
<textarea name="" id="" cols="100" rows="15"></textarea>
<br><br>
<!-- images -->
<img src="images/photos/penguin1.jpg" alt="penguin on a snow covered rock" />
<!-- <img src="images/photos/bird1.jpg" alt="black swan curled up" />
<img src="images/photos/elephants1.jpg" alt="four elephants walking in a line down a dirt path" />
<img src="images/photos/hero1.jpg" alt="picture of Jo the photographer holding hands into chest looking away from camera" />
<img src="images/photos/jellies1.jpg" alt="a lot of colorful jellyfish in the ocean" />
<img src="images/photos/snake1.jpg" alt="close up of a snake head curled up" />
<img src="images/photos/turtle1.jpg" alt="turle swimming in the ocean" />
<img src="images/photos/water-birds1.jpg" alt="a group of birds in the water" />
<img src="images/photos/zebra1.jpg" alt="close up of a zebras face" /> -->
<!-- Molecules -->
<h2>Molecules</h2>
<br><br>
<h3>Nav</h3><br>
<!-- nav
.nav-main -->
<nav class="nav-main">
<a href="index.html" class="nav-text">Home</a>
<a href="blog.html" class="nav-text">Blog</a>
<a href="contact.html" class="nav-text">Contact</a>
<button class="icon">
<img src="images/icons/search1.svg" alt="magnifying glass icon" />
</button>
<button class="small-nav">
<img src="images/icons/bars1.svg" alt="menu selection bars icon" />
</button>
</nav>
<!-- contact form
.form-contact -->
<form action="" class="form-contact">
<section class="form-section">
<label for="message">Message</label>
<textarea name="message" id=""message cols="100" rows="15"></textarea>
</section>
<section class="form-section">
<label for="name">Name *</label>
<input type="text" name="name" id="name" required/>
</section>
<section class="form-section">
<label for="email">Email *</label>
<input type="email" name="email" id="email" required/>
</section>
<section class="form-section">
<label for="website">Website</label>
<input type="url" name="website" id="website" />
</section>
<input type="submit" class="submit-button" value="Send Message"/>
</form>
<br><br>
<!-- sidebar widget
.widget -->
<h3>Sidebar widget</h3><br>
<section class="widget">
<h3>Recent Posts</h3>
<ul>
<li><a href="#">Lorem ipsum dolor sit amet consectetur adipisicing elit. </a></li>
<li><a href="#">Praesentium ea, neque quaerat ipsa sit quidem.</a></li>
<li><a href="#"> Aut inventore omnis, libero, molestias consequuntur officiis incidunt voluptates laudantium, sapiente eveniet nulla dolorem voluptatum.</a></li>
</ul>
</section>
<br><br>
<!-- .hero -->
<section class="hero">
<h1>My name is Jo<span class="text-color-salmon">.</span>
</span><br>I'm a <em class="text-color-blue">photographer</em></h1>
</section>
<br><br>
<!-- .card -->
<section class="card">
<img src="images/photos/jellies1.jpg" alt="jellyfish swimming in the sea" />
<button class="category-button">underwater</button>
<button class="category-button">colourful</button>
<h3>Donec fringilla eros metus</h3>
<time class="date-time" datetime="2020-06-07">Posted on June 7,2020</time>
<h4>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo cupiditate molestias maxime voluptatum distinctio nobis.</h4>
<a href="#" class="link-text" >Continue reading</a>
</section>
<br /><br />
<!-- .article -->
<article class="article">
<img src="images/photos/jellies1.jpg" alt="jellyfish swimming in the sea" />
<time class="date-time" datetime="2020-06-07">Posted on June 7,2020</time>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Ab ipsum, error eaque quo itaque provident perferendis rem temporibus debitis nemo doloremque nostrum obcaecati, distinctio assumenda magnam minus cum. Unde, nihil. Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis earum error possimus. Quae, eum! Eligendi, corporis! Dolore error, earum fuga quis commodi sed nobis molestiae nostrum quos hic nemo soluta.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Id commodi, voluptate voluptas qui ullam cupiditate. In aspernatur tempore ullam, modi praesentium quae fugit odio aperiam tenetur! Quidem assumenda alias magni?Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellat, labore quae nostrum at consequatur similique temporibus ex facere est velit dolore doloremque numquam dicta quis, illo iure error rerum tempora.</p>
<button class="category-button">colourful</button>
<button class="category-button">water</button>
</article>
<!-- Organisms -->
<h2>Organisms</h2>
<br><br>
<!-- .header-main -->
<header class="header-main">
<h1><em>Ignis</em></h1>
<nav class="nav-main">
<a href="index.html" class="nav-text">Home</a>
<a href="blog.html" class="nav-text">Blog</a>
<a href="contact.html" class="nav-text">Contact</a>
<button class="icon">
<img src="images/icons/search1.svg" alt="magnifying glass icon" />
</button>
<button class="small-nav">
<img src="images/icons/bars1.svg" alt="menu selection bars icon" />
</button>
</nav>
</header>
<!-- .gallery -->
<section class="gallery">
<figure class="span-two-row">
<img src="images/photos/penguin1.jpg" alt="penguin on a snow covered rock" />
</figure>
<figure class="span-one-row">
<img src="images/photos/jellies1.jpg" alt="a lot of colorful jellyfish in the ocean" />
</figure>
<figure class="span-two-row">
<img src="images/photos/zebra1.jpg" alt="close up of a zebras face" />
</figure>
<figure class="span-two-row">
<img src="images/photos/bird1.jpg" alt="black swan curled up" />
</figure>
<figure class="span-one-row">
<img src="images/photos/snake1.jpg" alt="close up of a snake head curled up" />
</figure>
<figure class="span-two-row">
<img src="images/photos/elephants1.jpg" alt="four elephants walking in a line down a dirt path" />
</figure>
<figure class="span-one-row">
<img src="images/photos/water-birds1.jpg" alt="a group of birds in the water" />
</figure>
<figure class="span-one-row">
<img src="images/photos/turtle1.jpg" alt="turle swimming in the ocean" />
</figure>
</section>
<!-- .footer-main -->
<footer class="footer-main">
<a class="icon" href="http://twitter.com">
<img src="images/icons/twitter1.svg" alt="twitter icon" />
</a>
<a href="http://facebook.com" class="icon">
<img src="images/icons/facebook-f1.svg" alt="facebook icon" />
</a>
<a href="http://youtube.com" class="icon">
<img src="images/icons/youtube1.svg" alt="youtube icons" />
</a>
<a href="http://instagram.com" class="icon">
<img src="images/icons/instagram1.svg" alt="instagram icon" />
</a>
</footer>
<!-- .cardlist -->
<section class="cardlist">
<section class="card">
<img src="images/photos/jellies1.jpg" alt="jellyfish swimming in the sea" />
<button class="category-button">underwater</button>
<button class="category-button">colourful</button>
<h3>Donec fringilla eros metus</h3>
<time class="date-time" datetime="2020-06-07">Posted on June 7,2020</time>
<h4>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo cupiditate molestias maxime voluptatum distinctio nobis.</h4>
<a href="#" class="link-text" >Continue reading</a>
</section>
<section class="card">
<img src="images/photos/turtle1.jpg" alt="turle swimming in the ocean" />
<button class="category-button">underwater</button>
<button class="category-button">blue</button>
<h3>Donec fringilla eros metus</h3>
<time class="date-time" datetime="2020-06-07">Posted on June 7,2020</time>
<h4>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo cupiditate molestias maxime voluptatum distinctio nobis. Sit ullam necessitatibus culpa ea sed impedit quidem sunt commodi aperiam! Placeat, officiis laboriosam repudiandae laborum pariatur ab adipisci quibusdam rem iusto!</h4>
<a href="#" class="link-text" >Continue reading</a>
</section>
<section class="card">
<img src="images/photos/water-birds1.jpg" alt="a group of birds in the water" />
<button class="category-button">birds</button>
<button class="category-button">water</button>
<h3>Donec fringilla eros metus</h3>
<time class="date-time" datetime="2020-06-07">Posted on June 7,2020</time>
<h4>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo cupiditate molestias maxime voluptatum distinctio nobis. Lorem, ipsum dolor sit amet consectetur adipisicing elit. </h4>
<a href="#" class="link-text" >Continue reading</a>
</section>
<section class="card">
<img src="images/photos/snake1.jpg" alt="close up of a snake head curled up" />
<button class="category-button">reptiles</button>
<button class="category-button">colourful</button>
<h3>Donec fringilla eros metus</h3>
<time class="date-time" datetime="2020-06-07">Posted on June 7,2020</time>
<h4>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo cupiditate molestias maxime voluptatum distinctio nobis.</h4>
<a href="#" class="link-text" >Continue reading</a>
</section>
</section>
<!-- .sidebar -->
<section class="sidebar">
<section class="widget">
<h3>Recent Posts</h3>
<ul>
<li><a href="#">Lorem ipsum dolor sit amet consectetur adipisicing elit. </a></li>
<li><a href="#">Praesentium ea, neque quaerat ipsa sit quidem.</a></li>
<li><a href="#"> Aut inventore omnis, libero, molestias consequuntur officiis incidunt voluptates laudantium, sapiente eveniet nulla dolorem voluptatum.</a></li>
</ul>
</section>
<section class="widget">
<h3>Recent Posts</h3>
<ul>
<li><a href="#">Lorem ipsum dolor sit amet consectetur adipisicing elit. </a></li>
<li><a href="#">Praesentium ea, neque quaerat ipsa sit quidem.</a></li>
<li><a href="#"> Aut inventore omnis, libero, molestias consequuntur officiis incidunt voluptates laudantium, sapiente eveniet nulla dolorem voluptatum.</a></li>
</ul>
</section>
</section>
</body>
</html>