-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleguide.html
77 lines (57 loc) · 2.18 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
<!DOCTYPE html>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, user-scalable=no">
<title>Styleguide - Cafébebel 2017</title>
<link rel=stylesheet href=./styleguide.css>
<a href=# class=logo><img src=./img/logo-cafebabel.svg alt="logo cafébabel"></a>
<h1>h1: Chewie, we're home.</h1>
<h2>h2: They call it a Royale with cheese.</h2>
<h3>h3: Why so serious?</h3>
<h4>h4: Mama says, 'Stupid is as stupid does.</h4>
<h5>h5: Elementary, my dear Watson.</h5>
<h6>h6: Magic Mirror on the wall, who is the fairest one of all?</h6>
<p>p: My name is Maximus Decimus Meridius, commander of the Armies of the North, General of the Felix Legions and loyal servant to the true emperor, Marcus Aurelius. Father to a murdered son, husband to a murdered wife. And I will have my vengeance, in this life or the next.</p>
<p>p a: The first rule of Fight Club is: You do not talk about Fight Club. The second rule of <a href=#>Fight Club</a> is: You do not talk about Fight Club.</p>
<blockquote>blockquote: "Say hello to my little friend!"</blockquote>
<ul>
<li>li : Pierre</li>
<li>li : Pierre</li>
<li>li : Pierre</li>
</ul>
<form>
<input type=text name=firstname placeholder="First Name">
<input type=text name=lastname placeholder="Last Name">
<input type=email name=email placeholder="Email">
<input type=submit value="Sign in">
</form>
<form id=signin>
<input type=text name=name placeholder="Full Name">
<input type=email name=email placeholder="Email">
<input type=submit value="Sign in">
</form>
<form class=checkbox>
<label for=styleguide>Checkbox</label>
<input type=checkbox id=styleguide>
</form>
<form>
<textarea></textarea>
</form>
<label for=field-language>Languages
<select name=language id=field-language required>
<option value=en>English</option>
<option value=fr>French</option>
<option value=it>Italian</option>
<option value=de>German</option>
<option value=es>Spanish</option>
</select>
</label>
<button class=menu-button></button>
<nav>
<ul>
<li><a href=#>Home</a></li>
<li><a href=#>Participate</a></li>
<li><a href=#>Sections</a></li>
<li><a href=#>About</a></li>
</ul>
</nav>
<script src=./script.js></script>