-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfont.html
More file actions
36 lines (35 loc) · 898 Bytes
/
font.html
File metadata and controls
36 lines (35 loc) · 898 Bytes
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>Document</title>
<style>
#para1{
font-size: 10vh; /* vh means 1/100 of window height and pt is also used for font size*/
}
#para2{
font-size: 40px;
font-family: sans-serif;
}
#para3{
font-size: 50px;
font-style: italic;
font-weight: lighter;
}
#para4{
word-spacing: 10px;
letter-spacing: 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
</style>
</head>
<body>
<p id= "para1">
this is para 1
</p>
<p id= "para2">this is para 2</p>
<p id= "para3">this is para 3</p>
<p id= "para4">this is para 4</p>
</body>
</html>