-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
36 lines (36 loc) · 884 Bytes
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Selectors</title>
</head>
<body></body>
<style>
.para1 {
color: red;
}
.para2 {
color: rgb(0, 4, 255);
font-size: larger;
word-spacing: 10px;
}
.line {
line-height: 50px;
word-spacing: 10px;
font-size: 20px;
font-style: oblique;
text-shadow: 2px 4px 5px blue;
}
</style>
<p class="para1 para2">Paragraph 1: Introduce yourself</p>
<p class="line">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ad odit totam
consequatur illo ullam adipisci, excepturi nulla nesciunt commodi veniam,
voluptates alias blanditiis fuga accusantium quo possimus error minus
explicabo.
</p>
</html>
<html>
<head></head>
</html>