-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay2.html
More file actions
39 lines (31 loc) · 1.48 KB
/
Day2.html
File metadata and controls
39 lines (31 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<title>Internal CSS</title>
<style>
.a{
text-align: center;
color: blue;
font-family:cursive;
font-weight: bold;
font-size: 60px;
}
.b{
color:green;
font-family: fantasy;
font-size: 50px;
}
.c{
font-family:monospace;;
text-align: justify;
color:red;
font-size: 20px;
}
</style>
</head>
<body>
<h1 class="a"><u>Welcome</u></h1>
<h2 class="b">Here comes the paragraph!!!</h2>
<p class="c">In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available. In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available. In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available. In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content. Lorem ipsum may be used as a placeholder before final copy is available. </p>
</body>
</html>