-
Notifications
You must be signed in to change notification settings - Fork 0
/
font.html
34 lines (33 loc) · 914 Bytes
/
font.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=<>, initial-scale=1.0">
<title>Document</title>
<style>
*{
background-color: rgba(109, 165, 54, 0.56);
}
h1{
font-style: italic;
text-align: center;
font-weight: bold;
color: rgb(241, 22, 22);
text-shadow: 3px 3px 2px black;
}
p{
font-style: italic;
color: black;
text-align: center;
text-transform: capitalize;
line-height: 1.5;
}
</style>
</head>
<body>
<h1>the monk who sold his ferrari</h1>
<p>it is the life transforming story of the person who lived in America.
how he transform his boaring life to the spiritual life full of positivity.
</p>
</body>
</html>