-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
220 lines (198 loc) · 6.89 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="build/fluent.min.css" />
<script src="https://kit.fontawesome.com/d0731b8ace.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="main-container bg-blue">
<h1>Example headings with depth</h1>
<h1 class="depth-heading bg-red">h1 with depth</h1>
<h2 class="depth-heading bg-orange">h2 with depth</h1>
<h3 class="depth-heading bg-yellow">h3 with depth</h1>
<h4 class="depth-heading bg-green">h4 with depth</h1>
<h5 class="depth-heading bg-blue">h5 with depth</h1>
<h6 class="depth-heading bg-purple">h6 with depth</h1>
</div>
<div class="main-container bg-blue">
<h1>Example headings with round corners</h1>
<h1 class="round-heading bg-red">h1 with round corners</h3>
<h2 class="round-heading bg-orange">h2 with round corners</h3>
<h3 class="round-heading bg-yellow">h3 with round corners</h3>
<h4 class="round-heading bg-green">h4 with round corners</h3>
<h5 class="round-heading bg-blue">h5 with round corners</h3>
<h6 class="round-heading bg-purple">h6 with round corners</h3>
</div>
<div class="main-container bg-blue">
<h1>Example headings with darker borders</h1>
<h1 class="round-heading bg-red border-dark-red">h1 with darker border</h3>
<h2 class="round-heading bg-orange border-dark-orange">h2 with darker border</h3>
<h3 class="round-heading bg-yellow border-dark-yellow">h3 with darker border</h3>
<h4 class="round-heading bg-green border-dark-green">h4 with darker border</h3>
<h5 class="round-heading bg-blue border-dark-blue">h5 with darker border</h3>
<h6 class="round-heading bg-purple border-dark-purple">h6 with darker border</h3>
</div>
<div class="main-container bg-blue">
<h1>Example form elememts</h1>
<label for="name" id="name-label">
Name
<input id="name" type="text" placeholder="Enter name here..." required />
</label>
<label for="number" id="number-label">
Age (optional)
<input id="number" type="number" min="13" max="120" placeholder="Enter age here..." />
</label>
<label for="email" id="email-label">
Email
<input id="email" type="email" required placeholder="Enter email here..." />
</label>
<label for="password" id="password-label">
Password
<input id="password" type="password" placeholder="Enter password here..." required />
</label>
<label>
Any comments or suggestions?
<textarea class="input textarea" placeholder="Enter your comment here"> </textarea>
</label>
Which option best describes your current role?
<select id="dropdown" class="input select">
<option>Student</option>
<option>Full Time Job</option>
<option>Full Time Learner</option>
<option>Prefer not to say</option>
<option>Other</option>
</select>
Would you recommend freeCodeCamp to a friend?
<label>
<input type="radio" name="recommend" value="definetely" />Definitely
</label>
<label>
<input type="radio" name="recommend" value="maybe" />Maybe
</label>
<label>
<input type="radio" name="recommend" value="not-sure" />Not sure
</label>
What would you like to see improved? (Check all that apply)
<label><input type="checkbox" value="A" />Front-end Projects</label>
<label><input type="checkbox" value="B" />Back-end Projects</label>
<label><input type="checkbox" value="C" />Data Visualization</label>
<button id="submit" class="submit-button bg-green" type="submit">Submit</button>
</div>
<div class="main-container bg-blue">
<h1>Example buttons and width classes</h1>
<button class="bg-red w-25">
Button width 25%
</button>
<hr>
<button class="bg-orange w-50">
Button width 50%
</button>
<hr>
<button class="bg-yellow w-75">
Button width 75%
</button>
<hr>
<button class="bg-green w-100">
Button width 100%
</button>
</div>
<div class="main-container bg-blue">
<h1>Example social buttons</h1>
<button class="bg-red icon-button">
<i class="fa-brands fa-twitter"></i>
</button>
<button class="bg-orange icon-button">
<i class="fa-brands fa-facebook"></i>
</button>
<button class="bg-yellow icon-button">
<i class="fa-solid fa-thumbs-up"></i>
</button>
<button class="bg-green icon-button">
<i class="fa-solid fa-share-from-square"></i>
</button>
<button class="bg-blue icon-button">
<i class="fa-solid fa-user-plus"></i>
</button>
<button class="bg-purple icon-button">
<i class="fa-solid fa-heart"></i>
</button>
<button class="bg-red icon-button">
<i class="fa-solid fa-message"></i>
</button>
<button class="bg-orange icon-button">
<i class="fa-solid fa-retweet"></i>
</button>
<button class="bg-yellow icon-button">
<i class="fa-solid fa-bell"></i>
</button>
</div>
<div class="main-container bg-blue">
<h1>Example sound buttons</h1>
<button class="bg-red icon-button">
<i class="fa-solid fa-music"></i>
</button>
<button class="bg-orange icon-button">
<i class="fa-solid fa-volume-high"></i>
</button>
<button class="bg-yellow icon-button">
<i class="fa-solid fa-volume-low"></i>
</button>
<button class="bg-green icon-button">
<i class="fa-solid fa-volume-xmark"></i>
</button>
<button class="bg-blue icon-button">
<i class="fa-solid fa-microphone"></i>
</button>
<button class="bg-purple icon-button">
<i class="fa-solid fa-microphone-slash"></i>
</button>
<button class="bg-red icon-button">
<i class="fa-solid fa-circle-play"></i>
</button>
</div>
<div class="main-container bg-blue">
<h1>Example tables, ordered and unordered lists.</h1>
<h3 class="underline">Table</h3>
<table>
<thead>
<tr>
<th>Wild Header</th>
<th>Crazy Header</th>
<th>Another Header?</th>
</tr>
</thead>
<tbody>
<tr>
<td>Your content can</td>
<td>be here, and it</td>
<td>can be here....</td>
</tr>
<tr>
<td>And here.</td>
<td>Okay.</td>
<td>I think we get it.</td>
</tr>
</tbody>
</table>
<h3 class="underline">Unordered list</h3>
<ul>
<li>And of course there are lists.<ul>
<li>Some are bulleted.<ul>
<li>With different indentation levels.<ul>
<li>That look like this.</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h3 class="underline">Ordered list</h3>
<ol>
<li>And there are numbered lists too.</li>
<li>Use just 1s if you want!</li>
<li>And last but not least, let's not forget embedded images:</li>
</ol>
</div>
</body>
</html>