-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.16 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>
<meta name="title" content="Hello World!">
<meta name="description" content="Hello World">
<meta name="keywords" content="github page hello word n2k3 gh-n2k3">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;900&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
.container {
margin:auto;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #d1dae3;
}
.container .text {
color: transparent;
font-size: 10vw;
display: inline-block;
border-radius: 3px;
background-color: #0e72ff;
position: relative;
-webkit-background-clip: text;
background-clip: text;
font-family: "Montserrat", sans-serif;
}
</style>
<div class="container">
<span data-title="HelloWorld!" class="text">
HelloWorld!
</span>
</div>