-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleguide.html
854 lines (671 loc) · 36.2 KB
/
styleguide.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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=3, minimum-scale=0.5">
<title>Style Guide of Fang Ceramics</title>
<link href="css/styleguide.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Style Guide of Fang Ceramics</h1>
<p>Ceramic Products for Home & Soul</p>
</header>
<nav class="sticky navigation-normal">
<ul>
<li><a href="#interactive_elements">Interactive Elements</a></li>
<li><a href="#text_elements" >Text</a></li>
<li><a href="#combined_elements" >Components</a></li>
<li><a href="#branding_ideas" >Branding</a></li>
<li><a href="home.html" >Website</a></li>
<li><a href="#citations" >Citations</a></li>
</ul>
</nav>
<section class="container_content">
<!-- INTERACTIVE ELEMENTS SECTION // -->
<section id="interactive_elements">
<h2>Interactive Elements</h2>
<section class="in_text_link_section">
<h3>In-text link</h3>
<h4>CSS selector:</h4>
<p>.in-text-link</p>
<h4>Sample code:</h4>
<code><a href="#" class="in-text-link" target="_blank">Click here</a></code>
<h4>Rendered element:</h4>
<a href="#" class="in-text-link" target="_blank">Click here</a>
</section>
<!-- Default Button styling section -->
<section class="nav_link_section">
<h3>Navigation Link</h3>
<h4>CSS selector:</h4>
<p>.button-nav1</p>
<h4>Sample code:</h4>
<code><a href="#" class="button-nav1">Home</a></code>
<h4>Rendered element:</h4>
<div class="navigation-normal">
<a href="#">Home</a>
</div>
</section>
<section class="button_section">
<h3>Buttons</h3>
<div class="button_container_1">
<div>
<p>By style</p>
<h4>Filled buttons:</h4>
<input type="submit" value="Submit" id="submit-button">
<h4>Ghost buttons:</h4>
<input type="reset" value="Reset" id="reset-button">
</div>
<div>
<p>By size</p>
<h4>Large buttons:</h4>
<input type="button" id="buy-now" onclick="location.href='result.html'" value="Buy now">
<h4>small buttons:</h4>
<input type="button" id="apply" value="Apply">
</div>
<div>
<p>Buttons with icons</p>
<h4>Return button:</h4>
<div id="return_button">
<a href="cart.html" class="in-text-link"><img class="back-icon" src="images/checkout/back.png" alt="Back">Return to cart</a>
</div>
</div>
</div>
</section>
<section class="quantity_selector_section">
<h3>Quantity Selectors</h3>
<h4>CSS selector:</h4>
<p>.quantity_selector</p>
<h4>Sample code:</h4>
<code><div class="quantity_selector"></code>
<code><span class="minus">-</span></code>
<code><span class="num">1</span></code>
<code><span class="plus">+</span></code>
<h4>Rendered element:</h4>
<div class="quantity_selector">
<span class="minus">-</span>
<span class="num">1</span>
<span class="plus">+</span>
</div>
<script>
const plus = document.querySelector(".plus"),
minus = document.querySelector(".minus"),
num = document.querySelector(".num");
let a = 1;
plus.addEventListener("click",()=>{
a++;
console.log(a);
num.innerText = a;
});
minus.addEventListener("click",()=>{
if(a>1){
a--;
num.innerText = a;
}
});
</script>
</section>
<section class="text_field_section">
<h3>Text Input Field with Label</h3>
<h4>CSS selector:</h4>
<p>input[type=text]</p>
<h4>Sample code:</h4>
<code><label for="fname">First name:</label><br></code>
<code><input type="text" id="fname" name="fname" placeholder="Enter here"></code>
<h4>Rendered element:</h4>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" placeholder="Enter here">
</section>
<section class="radio_button_section">
<h3>Radio Button with Label</h3>
<h4>CSS selector:</h4>
<p>input[type="radio"]</p>
<h4>Sample code:</h4>
<code><input type="radio" class="radio-type" name="payment-method" id="creadit-card" value="1"></code>
<code><label for="credit-card">Credit card</label></code>
<code><input type="radio" class="radio-type" id="PayPal" name="payment-method" value="2"></code>
<code><label for="PayPal">PayPal</label></code>
<code><input type="radio" class="radio-type-disabled" id="wechat" name="payment-method" value="3"></code>
<code><label for="Wechat">Wechat</label></code>
<h4>Rendered element:</h4>
<div class="payment-radio">
<input class="radio-type" type="radio" id="credit-card" name="payment-method" value="1">
<label for="credit-card">Credit card</label>
</div>
<div class="payment-radio">
<input class="radio-type" type="radio" id="PayPal" name="payment-method" value="2">
<label for="PayPal"> PayPal</label>
</div>
<div class="payment-radio">
<input class="radio-type-disabled" type="radio" id="wechat" name="payment-method" disabled>
<label for="wechat">Wechat</label>
</div>
<h4>Rendered element (radio button with icons):</h4>
<div class="delivery-method">
<div class="delivery-method-box">
<input class="radio-type" type="radio" id="delivery-method1" name="delivery-method" value="1">
<label for="delivery-method1"><img class="icon-delivery" src="images/checkout/ship.png" alt="Ship">Ship</label>
</div>
<div class="delivery-method-box">
<input class="radio-type" type="radio" id="delivery-method2" name="delivery-method" value="2">
<label for="delivery-method2"><img class="icon-delivery" src="images/checkout/pickup.png" alt="Pickup">Pick up</label>
</div>
</div>
</section>
<section class="image_as_link_section">
<h3>Image as a Link</h3>
<h4>CSS selector:</h4>
<p>#mug</p>
<h4>Sample code:</h4>
<code><a href="#"><img id="imagelink" src="mug.png" alt="A handmade Japanese mug"></a></code>
<h4>Rendered element:</h4>
<a href="#">
<img id="imagelink" src="images/styleguide/mug.png" alt="A handmade Japanese mug">
</a>
</section>
</section>
<!-- // INTERACTIVE ELEMENTS SECTION -->
<!-- TEXT ELEMENTS SECTION // -->
<div id="text_elements">
<h2>Text Elements</h2>
<div class="heading_section">
<h3>Headings</h3>
<h4>CSS selector:</h4>
<p>h1</p>
<p>h2</p>
<p>h3</p>
<p>h4</p>
<h4>Sample code:</h4>
<code><h1>The First Level of Heading</h1></code>
<code><h2>The Second Level of Heading</h2></code>
<code><h3>The Third Level of Heading</h3></code>
<code><h4>The Fourth Level of Heading</h4></code>
<h4>Rendered element:</h4>
<h1>Page Title - Use as the title for the whole web-page</h1>
<h2 id="h2_headings">Card Title - Use as the title of a card</h2>
<h3>Section Title - Use to seperate sections</h3>
<h4>The Forth Level of Heading</h4>
</div>
<section class="paragraph_section">
<h3>Paragraphs</h3>
<h4>CSS selector:</h4>
<p>p</p>
<h4>Sample code:</h4>
<code><p>We are a passionate and creative group of ceramic artists based in Burnaby, British Columbia. Our goal is to co-design and handcraft a unique collection of high-quality ceramic pieces, including mugs, glasses and a variety of other functional and decorative items. Our group is dedicated to providing a welcoming and inclusive environment, where artists of all levels can learn, collaborate and grow together. To stay connected with us, be sure to attend one of our regular events, where you can meet other artists, learn new techniques and see our latest creations in person. We are always looking for new members to join us on this exciting journey, so don't hesitate to get in touch and become a part of our creative community!</p></code>
<!-- Shorten the default width of the <p> element, but ensure it is still responsive when the viewport shrinks. -->
<h4>Rendered element:</h4>
<P>We are a passionate and creative group of ceramic artists based in Burnaby, British Columbia. Our goal is to co-design and handcraft a unique collection of high-quality ceramic pieces, including mugs, glasses and a variety of other functional and decorative items. Our group is dedicated to providing a welcoming and inclusive environment, where artists of all levels can learn, collaborate and grow together. To stay connected with us, be sure to attend one of our regular events, where you can meet other artists, learn new techniques and see our latest creations in person. We are always looking for new members to join us on this exciting journey, so don't hesitate to get in touch and become a part of our creative community!</P>
</section>
<section class="numbered_list_section">
<h3>Numbered Lists</h3>
<h4>CSS selector:</h4>
<p>ol</p>
<p>li</p>
<h4>Sample code:</h4>
<code><ol></code>
<code><li>Item</li></code>
<code><li>Price</li></code>
<code><li>Quantity</li></code>
<code></ol></code>
<h4>Rendered element:</h4>
<ol>
<li>Item</li>
<li>Price</li>
<li>Quantity</li>
</ol>
</section>
</div>
<!-- // TEXT ELEMENTS SECTION -->
<!-- COMBINED ELEMENTS SECTION // -->
<section id="combined_elements">
<h2>Combined Elements</h2>
<section class="main_nav_section">
<h3>Main Navigation</h3>
<!-- <h4>CSS selector:</h4>
<p>.topnav</p>
<h4>Sample code:</h4>
<code><nav class="topnav"></code>
<code><a href="#" class="button-nav">Home</a></code>
<code><a href="#" class="button-nav">Shop</a></code>
<code><a href="#" class="button-nav">Course</a></code>
<code><a href="#" class="button-nav">About</a></code>
<code></nav></code> -->
<h4>Rendered elements:</h4>
<!-- <nav>
<a href="#" class="button-nav">Home</a>
<a href="#" class="button-nav">Shop</a>
<a href="#" class="button-nav">Course</a>
<a href="#" class="button-nav">About</a>
</nav> -->
<nav class="navigation-normal">
<ul>
<li><a href="#">Home</a ></li>
<li><a href="#">Shop</a ></li>
<li ><a href="#">About</a ></li>
<li><a href="#">Cart</a ></li>
</ul>
</nav>
</section>
<!--
<section class="second_nav_section">
<h3>Secondary Navigation</h3>
<h4>CSS selector:</h4>
<p>.topnav</p>
<h4>Sample code:</h4>
<h4>Rendered elements:</h4>
<div>
<a href="#" class="secondary-selector-checked">Checked</a>
<a href="#" class="secondary-selector-unchecked">Unchecked</a>
<a href="#" class="secondary-selector-unchecked">Unchecked</a>
</div>
</section>
-->
<section class="navigation-bar-with-drop-down-menu">
<h3>Navigation Bar with Drop-down Menu</h3>
<h4>Rendered elements:</h4>
<nav class="navigation-normal">
<ul>
<!-- <li><a href="#">Home</a ></li>
<li><a href="#">Shop</a ></li> -->
<li ><a href="#">About<div class="triangle"></div></a >
<ul class="secondary-style">
<li><a href="#">About Us</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</li>
<!-- <li><a href="#">Cart</a ></li> -->
</ul>
</nav>
</section>
<section class="mobile-hamburger-navigation">
<h3>Mobile Hamburger Navigation</h3>
<h4>Rendered elements:</h4>
<div class="navigation-hamburger">
<div class="hidden-content"></div>
<div id="menuToggle">
<input type="checkbox" id="checkbox-hamburger">
<span></span>
<span></span>
<span></span>
<ul id="menu">
<li ><a href="home.html">Home</a ></li>
<li id="hamburger-style-1"><a href="shop.html">Shop</a ></li>
<li id="hamburger-style-2"><a href="about.html">About Us</a></li>
<li><a href="news.html">News</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li id="hamburger-style-3"><a href="cart.html">Cart</a ></li>
</ul>
</div>
</div>
</section>
<section class="product_list_section">
<h3>Product/Service Listing</h3>
<h4>CSS selector:</h4>
<p>.container1</p>
<p>.card1</p>
<p>.card2</p>
<p>.card3</p>
<p>.mug</p>
<p>.in-text-link</p>
<p>.add_to_cart</p>
<h4>Sample code:</h4>
<code><div class="container1"></code>
<code><div class="card1"></code>
<code><img class="mug" src="mug1.png" alt="Mount Fuji Mug"></code>
<code><h4>Mount Fuji Mug</h4></code>
<code><p><a href="css/mug1.html class="in-text-link">View Details</a></p></code>
<code><p>$50</p></code>
<code><p><button clas="add_to_cart">Add to Cart</button></p></code>
<code></div></code>
<code><div class="card2"></code>
<code><img class="mug" src="mug2.png" alt="Blue Haze Mino Ware Yunomi Japanese Teacup"></code>
<code><h4>Blue Haze Japanese Teacup</h4></code>
<code><p><a href="css/mug2.html class="in-text-link">View Details</a></p></code>
<code><p>$37</p></code>
<code><p><button clas="add_to_cart">Add to Cart</button></p></code>
<code></div></code>
<code><div class="card3"></code>
<code><img class="mug" src="mug3.png" alt="Magpie' Mug"></code>
<code><h4>Magpie' Mug</h4></code>
<code><p><a href="css/mug3.html class="in-text-link">View Details</a></p></code>
<code><p>$62</p></code>
<code><p><button clas="add_to_cart">Add to Cart</button></p></code>
<code></div></code>
<code></div></code>
<h4>Rendered elements:</h4>
<div class="container1">
<div class="card">
<a href="product-details-1.html">
<img class="mug" src="images/product-detail/mug3.png" alt="Dinner Bowl | Anthracite"></a>
<h4>Dinner Bowl | Anthracite</h4>
<p>$62</p>
<input type="button" class="add_to_cart" onclick="location.href='cart.html'" value="Add to Cart">
</div>
<div class="card">
<a href="product-details-2.html">
<img class="mug" src="images/product-detail/mug4.png" alt="Bud Vase | Stone"></a>
<h4>Bud Vase | Stone</h4>
<p>$50</p>
<input type="button" class="add_to_cart" onclick="location.href='cart.html'" value="Add to Cart">
</div>
<div class="card">
<a href="product-details-1.html">
<img class="mug" src="images/product-detail/mug6.png" alt="Large Vase | Anthracite"></a>
<h4>Large Vase | Anthracite</h4>
<p>$64</p>
<input type="button" class="add_to_cart" onclick="location.href='cart.html'" value="Add to Cart">
</div>
</div>
</section>
<section class="payment_form_section">
<h3>Payment Form</h3>
<h4>CSS selector:</h4>
<p>#payment-form</p>
<p>#payment-form-title</p>
<p>#radio</p>
<p>input[type="radio"]</p>
<h4>Sample code:</h4>
<code><div id="payment-form"></code>
<code></code>
<code><p id="payment-form-title">Choose your payment method:</p></code>
<code><div id="radio"></code>
<code><label class="payment-method"></code>
<code><input type="radio" name="method" value="1">Credit card</label></code>
<code><label class="payment-method"></code>
<code><input type="radio" name="method" value="2">PayPal</label></code>
<code><label></code>
<code><input type="radio" name="method" value="3" disabled>WeChat</label></code>
<code></div></code>
<code></code>
<code><div id="other-input"></code>
<code><label>First name<br><input type="text" name="fname" placeholder="Enter here"></label><br></code>
<code><label>Last name<br><input type="text" name="lname" placeholder="Enter here"></label><br></code>
<code><label>Credit card number<br><input type="number" name="cardnumber" placeholder="Enter here"></label><br></code>
<code><label>Security code<br><input type="number" name="secritycode" placeholder="Enter 3-digit code"></label><br></code>
<code><label>Card expiration<br><input type="month" name="cardexpiration"></label><br></code>
<code></div></code>
<code></code>
<code><input type="submit" value="Submit"></code>
<code></div></code>
<h4>Rendered elements:</h4>
<div id="payment-form">
<p id="payment-form-title">Choose your payment method:</p>
<div class="payment-radio">
<input class="radio-type" type="radio" id="credit-card2" name="payment-method" value="1">
<label for="credit-card2">Credit card</label>
</div>
<div class="payment-radio">
<input class="radio-type" type="radio" id="PayPal2" name="payment-method" value="2">
<label for="PayPal2"> PayPal</label>
</div>
<div class="payment-radio">
<input class="radio-type-disabled" type="radio" id="wechat2" name="payment-method" disabled>
<label for="wechat2">Wechat</label>
</div>
<div id="other-input">
<label>
First name<br>
<input type="text" name="fname" placeholder="Enter here">
</label><br>
<label>
Last name<br>
<input type="text" name="lname" placeholder="Enter here">
</label><br>
<label>
Credit card number<br>
<input type="number" name="cardnumber" placeholder="Enter here">
</label><br>
<label>
Security code<br>
<input type="number" name="securitycode" placeholder="Enter 3-digit code">
</label><br>
<label>
Card expiration<br>
<input type="month" name="cardexpiration">
</label><br>
</div>
<input type="submit" value="Submit">
</div>
</section>
<section id="checkout_section">
<h3>Checkout Cart</h3>
<h4>CSS selector:</h4>
<p>.checkout_cart</p>
<p>.cart_item1</p>
<p>.cart_item1_image</p>
<p>.cart_item1_price</p>
<p>.cart_item1_amount</p>
<p>.cart_item2</p>
<p>.cart_item2_image</p>
<p>.cart_item2_price</p>
<p>.cart_item2_amount</p>
<p>.total</p>
<p>.total-amount</p>
<p>.total-price</p>
<h4>Sample code:</h4>
<code><div class="checkout_cart"></code>
<code></code>
<code><section class="cart_item1"></code>
<code><div class="cart_item1_image"></code>
<code><img src="images/mug1.png" alt="Mount Fuji Mug" class="cart_image"></code>
<code></div></code>
<code><div class="cart_item1_name"></code>
<code><p>Mount Fuji Mug</p></code>
<code></div></code>
<code><div class="cart_item1_price"></code>
<code><p>$34</p></code>
<code></div></code>
<code><div class="cart_item1_amount"></code>
<code><p>1</p></code>
<code></div></code>
<code></section></code>
<code></code>
<code><section class="cart_item2"></code>
<code><div class="cart_item2_image"></code>
<code><img src="images/mug2.png" alt="Blue Haze Mino Ware Yunomi Japanese Teacup" class="cart_image"></code>
<code></div></code>
<code><div class="cart_item2_name"></code>
<code><p>Blue Haze Japanese Teacup</p></code>
<code></div></code>
<code><div class="cart_item2_price"></code>
<code><p>$27</p></code>
<code></div></code>
<code><div class="cart_item2_amount"></code>
<code><p>1</p></code>
<code></div></code>
<code></section></code>
<code></code>
<code><section class="total"></code>
<code><div class="total-amount"></code>
<code><p>Total amount: 2</p></code>
<code></div></code>
<code><div class="total-price"></code>
<code><p>Total price:<strong> $61</strong></p></code>
<code></div></code>
<code></section></code>
<code></code>
<code></div></code>
<h4>Rendered elements:</h4>
<div class="checkout_cart">
<div class="cart_item1">
<div class="cart_item1_image">
<img src="images/styleguide/mug1.png" alt="Everyday Mug | Stone" class="cart_image">
</div>
<div class="cart_item1_name">
<p>Everyday Mug | Stone</p>
</div>
<div class="cart_item1_price">
<p>$34</p>
</div>
<div class="cart_item1_amount">
<p>1</p>
</div>
</div>
<div class="cart_item2">
<div class="cart_item2_image">
<img src="images/styleguide/mug2.png" alt="Everyday Mug | Anthracite" class="cart_image">
</div>
<div class="cart_item2_name">
<p>Everyday Mug | Anthracite</p>
</div>
<div class="cart_item2_price">
<p>$27</p>
</div>
<div class="cart_item2_amount">
<p>1</p>
</div>
</div>
<div class="total">
<div class="total-amount">
<p>Total amount: 2</p>
</div>
<div class="total-price">
<p>Total price:<strong> $61</strong></p>
</div>
</div>
</div>
</section>
</section>
<!-- // COMBINED ELEMENTS SECTION -->
<!-- BRANDING IDEAS SECTION // -->
<section id="branding_ideas">
<h2>Branding Ideas</h2>
<section class="element">
<h3>Our Services</h3>
<h4>Name of the brand - Fang Ceramics</h4>
<p>An online shop selling handmade pottery</p>
<p>Slogan: As Unique as Yourself.</p>
<img id="logo" src="images/branding/fang-ceramics-logo.png" alt="Logo of Fang Ceramics">
<h4>Main features of this website</h4>
<ol>
<li>Sell unique ceramics products(main feature)</li>
<li>Allow users to book in-person classes</li>
<li>Allow users to contact the company</li>
</ol>
<h4>Our story: </h4>
<p>We are a passionate and creative group of ceramic artists based in Burnaby, British Columbia. Our goal is to co-design and handcraft a unique collection of high-quality ceramic pieces, including mugs, glasses and a variety of other functional and decorative items. Our group is dedicated to providing a welcoming and inclusive environment, where artists of all levels can learn, collaborate and grow together. To stay connected with us, be sure to attend one of our regular events, where you can meet other artists, learn new techniques and see our latest creations in person. We are always looking for new members to join us on this exciting journey, so don't hesitate to get in touch and become a part of our creative community!</p>
</section>
<section class="element">
<h3>Target Market</h3>
<p>Pottery lovers, craft lovers between the ages of 18-35 years old in Greater Vancouver area</p>
<div class="user_images">
<img id="user1" src="images/branding/user1.png" alt="Young man making pottery">
<img id="user2" src="images/branding/user2.png" alt="Young lady making pottery">
</div>
</section>
<section class="element">
<h3>Why might this company entice someone to purchase a product or service</h3>
<ul>
<li><strong>Strong connection: </strong><br>
All items in this online shop are unique and handmade. We hope to connect buyers with creators through our selected products.</li>
<li><strong>Express yourself: </strong><br>
People can express themselves and create their own unique pottery in our studio. We help people overcome
the fear of creating new, making mistakes and the whole design celebrates it.</li>
<li><strong>Sustainable production: </strong><br>
Each of our pieces is made by a completely handmade process in our studio, using local resources and privileging a type of production with minimal environmental impact.</li>
</ul>
</section>
</section>
<!-- // BRANDING IDEAS SECTION -->
<!-- BRAND COMPONENTS SECTION // -->
<section id="branding_components">
<h2>Brand Components</h2>
<section class="element">
<h3>Fonts</h3>
<p><strong>PlayfairDisplay</strong></p>
<P>PlayfairDisplay-Medium for h1 and h2.</P>
<P>PlayfairDisplay-Regular for h3.</P>
<p><strong>Raleway</strong></p>
<P>Raleway-Regular for the body text.</P>
</section>
<section class="element">
<h3>Icons</h3>
<p>We employ these clean, rounded icons to convey a sense of minimalism, craftsmanship and refinement.</p>
<img id="icons" src="images/branding/icons.png" alt="icons">
</section>
<section class="element">
<h3>Colour palettes</h3>
<div class="color_palettes">
<div id="palette1">
<p>Secondary Colour: #E3D0B5</p>
<p class="text-under-palettes">This colour can be applied to dividing lines.</p>
</div>
<div id="palette2">
<p>Primary Colour: #B86646</p>
<p class="text-under-palettes">This is the brand color. Apply it in the main buttons, outlines while hovering, section title, decoration lines and in-text-links. </p>
</div>
<div id="palette3">
<p>Secondary Colour: #7C6354</p>
<p class="text-under-palettes">This colour can be applied to text, such as navigation link and secondary navigation. </p>
</div>
<div id="palette4">
<p>Secondary Colour: #635B50</p>
<p class="text-under-palettes">You can use this color in less important text, such as some auxiliary explanatory text.</p>
</div>
<div id="palette5">
<p>Secondary Colour: #3B3431</p>
<p class="text-under-palettes">You can use this colour in important text, such as body text. </p>
</div>
</div>
</section>
<section class="element">
<h3>Mood board</h3>
<img id="moodboard" src="images/branding/moodboard.jpg" alt="Moodboard">
</section>
<section class="element">
<h3>Image styles</h3>
<p>We need to use high-quality images for our website. </p>
<p>To be more specific, the product display images need to be professionally photographed. The subject of the photo needs to be clearly presented.
The picture needs to clearly present the details of the product, as well as conveying a sense of handcrafted sophistication and a serene and beautiful atmosphere.</p>
<p>As for the images used in Home page or About page, we need to use images that reflect the brand colors as much as possible. Such as earth tones, and colors close to clay.</p>
<p>Here are some examples of product images:</p>
<div class="image-wrapper">
<img class="product-image" src="images/styleguide/mug1.png" alt="Product Image Sample">
<img class="product-image" src="images/styleguide/mug2.png" alt="Product Image Sample">
<img class="product-image" src="images/styleguide/mug3.png" alt="Product Image Sample">
<img class="product-image" src="images/styleguide/mug4.png" alt="Product Image Sample">
<img class="product-image" src="images/styleguide/mug5.png" alt="Product Image Sample">
<img class="product-image" src="images/styleguide/mug6.png" alt="Product Image Sample">
</div>
</section>
<section class="element">
<h3>Structure of the website</h3>
<img id="page-structure" src="images/styleguide/page-structure.png" alt="The structure of pages in this website">
</section>
</section>
<!-- // BRAND COMPONENTS SECTION -->
<section id="citations">
<h2>Citations</h2>
<ul>
<li>W3Schools. (2022).<strong>Display a Month Input Control [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_type_month">here</a></li>
<li>Shay Howe. (2022).<strong>Building Forms [Online Tutorial]</strong>. Retrieved from <a href="https://learn.shayhowe.com/html-css/building-forms/#organizing-form-elements">here</a></li>
<li>W3Schools. (2022). <strong>How TO - Product Card [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/howto/howto_css_product_card.asp">here</a>.</li>
<li>W3Schools. (2022). <strong>How TO - Top Navigation [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/howto/howto_js_topnav.asp">here</a>.</li>
<li>W3Schools. (2022). <strong>HTML Ordered Lists [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/html/html_lists_ordered.asp">here</a>.</li>
<li>Steve. (2021). <strong>Linking Image in HTML: How to create links from images [Online Tutorial]</strong>. Retrieved from <a href="https://pagedart.com/blog/linking-images-in-html/">here</a>.</li>
<li>W3Schools. (2022). <strong>HTML Input="radio" [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/tags/att_input_type_radio.asp">here</a>.</li>
<li>W3Schools. (2022). <strong>HTML Input="text" [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/tags/att_input_type_text.asp">here</a>.</li>
<li>Stackoverflow. (2022). <strong>How do you select a radio button in css? [Online Tutorial]</strong>. Retrieved from <a href="https://stackoverflow.com/questions/1002579/how-do-you-select-a-radio-button-in-css">here</a>.</li>
<li>Tutorialspoint. (2022). <strong>HTML - Text Links [Online Tutorial]</strong>. Retrieved from <a href="https://www.tutorialspoint.com/html/html_text_links.htm">here</a>.</li>
<li>W3Schools. (2022). <strong>HTML button type Attribute [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/tags/att_button_type.asp">here</a>.</li>
<li>W3Schools. (2022). <strong>CSS Links [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/css/css_link.asp">here</a>.</li>
<li>Stackoverflow. (2022). <strong>How to change border color of textarea on :focus [Online Tutorial]</strong>. Retrieved from <a href="https://stackoverflow.com/questions/16156594/how-to-change-border-color-of-textarea-on-focus">here</a>.</li>
<li>Sara Cope. (2011). <strong>Box-shadow [Online Tutorial]</strong>. Retrieved from <a href="https://css-tricks.com/almanac/properties/b/box-shadow/#:~:text=The%20blur%20radius%20(required)%2C,be%2010px%20of%20total%20shadow.%20*/">here</a>.</li>
<li>W3Schools. (2022). <strong>CSS Opacity / Transparency [Online Tutorial]</strong>. Retrieved from <a href="https://www.w3schools.com/css/css_image_transparency.asp">here</a>.</li>
<li>mdn web docs. (2022). <strong>::placeholder [Online Tutorial]</strong>. Retrieved from <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/::placeholder">here</a>.</li>
<li>Warren Davies. (2021). <strong>Sticky navbar [Online Tutorial]</strong>. Retrieved from <a href=" https://alvarotrigo.com/blog/sticky-navbar/#:~:text=To%20create%20a%20sticky%20navbar%2C%20you%20use%20the%20position%3A%20fixed,stick%20to%20its%20parent%20element.">here</a>.</li>
<li>TAV CERAMICS. (2023). <strong>TAV CERAMICS SHOP [Images of products]</strong>. Retrieved from <a href="https://tavceramics.com/collections/all">here</a>.</li>
<li>yimi Shan. (2018). <strong>Use CSS to modify the radio style [Tutorial]</strong>. Retrieved from <a href="https://www.jianshu.com/p/e1dac58adb2c">here</a>.</li>
<li>Toddmotto. (2014). <strong>foreach.js [Javascript]</strong>. Retrieved from <a href="https://github.com/toddmotto/foreach">here</a>.</li>
<li>The Northern Kiln. (2022). <strong>Behind The Wheel - Jane Snider Pottery [Article]</strong>. Retrieved from <a href="https://thenorthernkiln.ca/blogs/behind-the-wheel/behind-the-wheel-jane-snider-pottery">here</a>.</li>
<li>Kiln 9 Ceramics. (Unknown). <strong>POTTERY WORKSHOPS with Kiln 9 Ceramics [Article]</strong>. Retrieved from <a href="https://www.kiln9ceramics.com/collections/workshops">here</a>.</li>
<li>BELLE CUSHING. (2014). <strong>Why Restaurants are Ditching White China for Hand-Made Ceramics [Article]</strong>. Retrieved from <a href="https://www.bonappetit.com/entertaining-style/trends-news/article/new-ceramics">here</a>.</li>
<li>Xiao Y start again. (2022). <strong>Make a flexible two-level menu (HTML, CSS, JavaScript) [Tutorial]</strong>. Retrieved from <a href="https://blog.csdn.net/weixin_43230812/article/details/123371827">here</a>.</li>
<li>Arya_1s. (2016). <strong>Pure CSS to achieve multi-level navigation bar [Tutorial]</strong>. Retrieved from <a href="https://blog.csdn.net/qq_20417227/article/details/52266686">here</a>.</li>
<li>coder coder! (2020). <strong>How to make an HTML anchor link jump to a specific part of the page? [Online Tutorial]</strong>. Retrieved from <a href="https://coder-coder.com/make-html-anchor-link-jump-specific-part-of-page/#:~:text=Link%20to%20the%20element%20in,(pound%2Fhashtag)%20symbol.">here</a>.</li>
</ul>
</section>
</section>
</body>
</html>