-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsando Atributos.html
More file actions
61 lines (59 loc) · 1.68 KB
/
Usando Atributos.html
File metadata and controls
61 lines (59 loc) · 1.68 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
55
56
57
58
59
60
61
<!DOCTYPE html>
<!-- saved from url=(0114)https://edifyapps-s3-codebuddy-portal-franquias.s3.us-east-2.amazonaws.com/arquivos/conteudo/Web_Masobcss_5_3.html -->
<html data-lt-installed="true"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Using Attributes Quiz</title>
<style>
body {
font-family: Arial;
}
#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>
<h1>My To-Do List</h1>
<h2>Chores</h2>
<ul class="list">
<li>load the diswasher</li>
<li>vucuum living room</li>
<li>take out garbage</li>
<li class="finished">sweep the garage</li>
</ul>
<h2>Homework</h2>
<ul class="list">
<li>brainstorm ideas for Science project</li>
<li>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>Party</h2>
<ul class="list">
<li>send out invitations</li>
<li>reserve party room at restaurant</li>
<li>order the cake!</li>
</ul>
</div>
</body></html>