-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex19.html
More file actions
48 lines (48 loc) · 1.41 KB
/
Copy pathindex19.html
File metadata and controls
48 lines (48 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DAY - 19</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap');
h1{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
p{
font-style: italic;
font-weight: bolder;
font-size: medium;
/* letter-spacing: 40; */
text-decoration: underline;
text-decoration-color: blue ;
font-family: 'Baloo Bhai 2', sans-serif;
line-height: 4;
text-decoration-thickness: 7px;
}
body{
background-color: pink;
}
h2{
text-transform: capitalize;
text-indent: 45px;
text-align: center;
}
.Lorem{
border: 2px solid red;
width: 145px;
text-overflow: ellipsis;
overflow: hidden ;
word-break: break-all;
}
</style>
</head>
<body>
<div>
<h1>Fonts</h1>
<p>This video is on fonts</p>
<h2>about Fonts</h2>
<p class="Lorem">Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa beatae possimus recusandae ab?</p>
</div>
</body>
</html>