-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut_29.html
34 lines (34 loc) · 851 Bytes
/
tut_29.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Size Units</title>
<style>
.container{
/* width: 500px; */
/* height: 700px; */
height: 100vh;
width: 100vw;
font-size: 10px;
border: 2px solid red;
}
h1{
text-align: center;
font-size: 2rem;
}
#first{
font-size: 3rem;
padding: 3rem;
}
</style>
</head>
<body>
<div class="container">
<h1 id="first">Thus is first heading</h1>
<h1 id="second">This is second heading</h1>
<h1 id="third">This is third heading</h1>
</div>
</body>
</html>