-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.17 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MagicFoundation</title>
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
background-color: #f1efe7;
color: #000000;
font-family: 'Luckiest Guy', cursive;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
h1 {
font-size: 7rem;
margin: 0;
margin-bottom: 10px;
}
p {
font-size: 1.5rem;
max-width: 80%;
font-family: 'Quicksand', sans-serif;
font-weight: 400;
letter-spacing: 3px;
}
</style>
</head>
<body>
<h1>Magic Foundation</h1>
<p>Empowering Developers, Unleashing Innovation</p>
</body>
</html>