-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeep19.html
42 lines (42 loc) · 1.02 KB
/
deep19.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
41
42
<!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>Document</title>
<style>
html{
font-size: 12px;
}
.container{
/* width:400px;
height:344px; */
height:99.9vh;
width:185vh;
font-size:10px;
border:2px solid red;
}
#first{
text-align: center;
/* font-size:7em;
padding:3rem; */
}
#second{
text-align: center;
/* font-size:7em;
padding:3rem; */
}
h1{
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1 id="first" id="id">This is first heading</h1>
<h1 id="second" id="id">This is second heading</h1>
<h1 id="third" id="id">This is third heading</h1>
</div>
</body>
</html>