-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathAnushka.html
40 lines (37 loc) · 846 Bytes
/
Anushka.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
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Size Units</title>
<style>
html{
font-size: 25px;
}
h1{
text-align: center;
}
.container{
font-size: 10px;
border: 2px solid red;
height: 100vh;
width: 400px;
}
#first{
/*font-size: 5em;
padding: 3em;*/
}
#second{
/*font-size: 3rem;
padding: 3rem;*/
}
</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>