-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractical2.html
More file actions
42 lines (36 loc) · 1.71 KB
/
practical2.html
File metadata and controls
42 lines (36 loc) · 1.71 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
<!-- Write down HTML/CSS code to create 3 paragraphs. First Paragraph in yellow color,
second in red and third in green color. -->
<html>
<head>
<title>Practical 2</title>
<style>
.one {
color: yellow;
background-color: rgb(209, 124, 121);
}
.two {
color: red;
}
.three {
color: green;
}
</style>
</head>
<body>
<p class="one">Hopes and dreams were dashed that day. It should have been expected, but it still came as a shock.
The warning signs had been ignored in favor of the possibility, however remote, that it could actually happen.
That possibility had grown from hope to an undeniable belief it must be destiny. That was until it wasn't and
the hopes and dreams came crashing down.
</p>
<p class="two">Pink ponies and purple giraffes roamed the field. Cotton candy grew from the ground as a chocolate
river meandered off to the side. What looked like stones in the pasture were actually rock candy. Everything in
her dream seemed to be perfect except for the fact that she had no mouth.
</p>
<p class="three">Don't forget that gifts often come with costs that go beyond their purchase price. When you
purchase a child the latest smartphone, you're also committing to a monthly phone bill. When you purchase the
latest gaming system, you're likely not going to be satisfied with the games that come with it for long and want
to purchase new titles to play. When you buy gifts it's important to remember that some come with additional
costs down the road that can be much more expensive than the initial gift itself.
</p>
</body>
</html>