-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
102 lines (91 loc) · 2.56 KB
/
Copy pathhome.html
File metadata and controls
102 lines (91 loc) · 2.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome Page</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Konkhmer+Sleokchher&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
width: 100%;
font-family: 'Inter', sans-serif;
}
.screen {
position: relative;
height: 100vh;
width: 100%;
background: #FFFFFF;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
.faq {
position: absolute;
top: 20px;
right: 20px;
font-family: 'Konkhmer Sleokchher', sans-serif;
font-size: 5vw;
color: #000;
}
.faq a {
text-decoration: none;
color: inherit;
}
.welcome, .firstname {
font-family: 'Inter', sans-serif;
font-weight: 500;
font-size: 12vw;
color: #000;
text-align: center;
margin: 2vw 0;
}
.container3 {
margin-top: 5vh;
background: #000;
border-radius: 50px;
padding: 20px 40px;
display: flex;
align-items: center;
justify-content: center;
}
.getstarted {
font-family: 'Konkhmer Sleokchher', sans-serif;
font-size: 6vw;
color: #FFF;
text-decoration: none;
}
/* Media query for tablets and desktops */
@media (min-width: 768px) {
.faq {
font-size: 32px;
}
.welcome, .firstname {
font-size: 96px;
}
.getstarted {
font-size: 40px;
}
}
</style>
</head>
<body>
<div class="screen">
<div class="faq">
<a href="faq.html">FAQ</a>
</div>
<div class="welcome">Welcome</div>
<div class="firstname">Aidan</div>
<div class="container3">
<a href="ex.html" class="getstarted">Get Started!</a>
</div>
</div>
</body>
</html>