-
Notifications
You must be signed in to change notification settings - Fork 0
/
UsingAttributes.html
65 lines (63 loc) · 1.79 KB
/
UsingAttributes.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
<!DOCTYPE html>
<!-- Instructions: Using the provided HTML and CSS, add the correct attributes to the HTML to replicate the same webpage pictured below. -->
<html>
<head>
<meta charset="utf-8">
<title>Using Attributes Quiz</title>
<style>
body {
font-family: Arial;
color:#525c65;
}
#to-do-list {
width: 400px;
background: #2e3d49;
padding: 10px 20px;
}
.title {
color: #fff;
}
.underline {
text-decoration: underline;
}
.list {
list-style-type: circle;
text-align: left;
font-size: 16px;
color: #1fba58;
line-height: 24px;
}
.finished {
color: #f4442f;
text-decoration: line-through;
}
</style>
</head>
<body>
<div id="to-do-list">
<h1 class="title">My To-Do List</h1>
<h2 class="underline title">Chores</h2>
<ul class="list">
<li>load the diswasher</li>
<li>vacuum living room</li>
<li>take out garbage</li>
<li class="finished">sweep the garage</li>
</ul>
<h2 class="underline title">Homework</h2>
<ul class="list">
<li class="finished">brainstorm ideas for Science project</li>
<li class="finished">finish Calculus 2 problems</li>
<li>study for Programming midterm :P</li>
<li>finish Project 0 on Udacity FEND</li>
<li class="finished">find sources for Biology research paper</li>
<li>read first two chapters of The Art of War</li>
</ul>
<h2 class="underline title">Party</h2>
<ul class="list">
<li class="finished">send out invitations</li>
<li>reserve party room at restaurant</li>
<li>order the cake!</li>
</ul>
</div>
</body>
</html>