-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut9.htm
More file actions
52 lines (43 loc) · 983 Bytes
/
tut9.htm
File metadata and controls
52 lines (43 loc) · 983 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Font size untis</title>
<style>
html{
font-size: 15px;
}
.container{
/* width: 230px; */
/* height: 300px; */
height: 100vh;
width: 100vw;
/* font-size: 10px;
padding: 20px; */
border: 2px solid red;
}
h1{
text-align: center;
}
#second{
/* font-size: 3rem;
padding: 3rem; */
}
#first{
/* It will be 10 times the parent or container font size */
/* font-size: 10em; */
/* font-size: 3em;
/* 3x of font size not the parent */
/* padding: 3em; */
}
</style>
</head>
<body>
<div class="container">
<h1 id="first">This is First heading</h1>
<h1 id="second">This is Second heading</h1>
<h1 id="third">This is Third heading</h1>
</div>
</body>
</html>