-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
54 lines (42 loc) · 1.82 KB
/
practice.html
File metadata and controls
54 lines (42 loc) · 1.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css/intro-to-css.css">
</head>
<body>
<!--
CSS Practice
// h1 should be green
// all h2s should be red
// all text inside of buttons should be 24px in size
// at least 1 paragraph should have a dotted blue border
// the second list item should have a background color of yellow
// all list items should have a font size of 30px;
// the form should have a black background and change all the text inside of the form to white to make it legible
// round the edges to all buttons and give them a solid red border
-->
<h1 class="fancy-header">Hello Cerberus</h1>
<p class="dotted-border">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Amet architecto assumenda commodi, consequatur distinctio enim esse fugiat mollitia nobis obcaecati odio quis quisquam sed unde.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad delectus error expedita facere ipsam itaque numquam obcaecati quisquam temporibus? Blanditiis dolorem incidunt quos tempore voluptatum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad delectus error expedita facere ipsam itaque numquam obcaecati quisquam temporibus? Blanditiis dolorem incidunt quos tempore voluptatum.</p>
<h4 class="section-header">grocery list</h4>
<ul class="list-font">
<li>apples</li>
<li class="yellow-background">bananas</li>
<li>celery</li>
</ul>
<button class="button-text">click here!</button>
<form class="form-style">
<h4 class="section-header">Sign Up Now!</h4>
<label for="username">Username</label>
<input id="username" name="username" type="text">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<br>
<input class="button-text" type="submit">
</form>
</body>
</html>