-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfont_test.html
More file actions
51 lines (44 loc) · 1.18 KB
/
font_test.html
File metadata and controls
51 lines (44 loc) · 1.18 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- <style>
body {
overflow-x: hidden;
background-color: gray;
}
header {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
}
</style> -->
<title>TEST PAGE</title>
</head>
<body>
<header>
<p>Hello fonts</p>
</header>
<!-- Top bar -->
<section>
<h1 style="font-size: 1vw;">TEST H1 1VW</h1>
<h1 style="font-size: 2vw;">TEST H1 2VW</h1>
<h1 style="font-size: 3vw;">TEST H1 3VW</h1>
<h2 style="font-size: 1vw;">TEST H2 1VW</h2>
<h2 style="font-size: 2vw;">TEST H2 2VW</h2>
<h2 style="font-size: 3vw;">TEST H3 3VW</h2>
<div style="width:80%;">
<h1>div80% h1</h1>
<h2>div80% h2</h2>
</div>
<div style="width: 20%">
<h1>div 20% h1</h1>
<h2>div 20% h2</h2>
</div>
</section>
</body>
</html>