-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (80 loc) · 2.47 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
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Nunito:[email protected]&display=swap" rel="stylesheet">
<title>8IQ</title>
<style>
body {
background-color: #fff;
color: #333;
font-family: "Nunito", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
strong {
font-weight: 700;
}
.title {
margin: 0 auto;
max-width: 650px;
padding: 15vh 5vw;
animation-name: fadeInDown;
animation-duration: 1s;
animation-fill-mode: both;
}
h1 {
font-size: 170px;
margin: 20px 0 10px;
font-weight: 300;
}
h2 {
font-size: 26px;
font-weight: bold;
margin: 5px 0 10px;
font-weight: 600;
}
.logo {
min-width: 300px;
width: 300px;
overflow: hidden;
display: flex;
align-content: center;
flex-wrap: nowrap;
flex-direction: row;
align-items: center;
}
.logo h1 {
margin: 0;
font-size: 135px;
letter-spacing: -5px;
font-weight: 350;
}
@keyframes fadeInDown {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="title">
<div class="logo">
<dotlottie-player src="https://assets-v2.lottiefiles.com/a/20762556-116f-11ee-b7fe-07eb38231417/SiBOFscAv9.lottie" background="transparent" speed="1" style="width: 396px; height: 216px; margin: 0 -110px;" direction="1" playMode="normal" loop autoplay></dotlottie-player>
<h1>IQ</h1>
</div>
<h2>Software community</h2>
<p>Our primary focus on <strong>simplicity</strong> and development <strong>speed</strong></p>
<p>Check our <a href="https://github.com/8iq/">github</p>
</div>
<script src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs" type="module"></script>
</body>