forked from bansal/hook-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (100 loc) · 5.53 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delto</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/shorthandcss@1.1.1/dist/shorthand.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Muli:200,300,400,500,600,700,800,900&display=swap" />
<link rel="stylesheet" href="assets/hologram/style.css">
</head>
<body class="bg-black muli">
<nav class="w-100pc flex flex-column md-flex-row px-10 py-5 bg-black absolute top-0">
<div class="flex justify-between">
<a href="#" class="flex items-center p-2 mr-4 no-underline">
<img src="assets/images/logo.svg" height="45" width="85" />
</a>
</div>
</nav>
<!-- hero section -->
<section id="home" class="min-h-100vh flex flex-wrap justify-start items-center" style="">
<div class="w-100pc lg-w-25pc">
<div class="p-5 mt-l6 lg-mt-0">
<h1 class="white fs-l2 lh-2 md-fs-md5 lg-fs-xl1 md-lh-1 fw-900 text-center lg-text-left">FIT INTO NEW EQUATION</h1>
</div>
</div>
<div id="myearth" class="w-100pc lg-w-75pc">
<div id="glow"></div>
<div style="width: 100%; height: 100%; position: absolute; z-index: 1001"></div>
</div>
</section>
<!-- footer -->
<footer id="footer">
<div class="footer-top">
<div class="container open-sans">
<div class="flex flex-wrap">
<div class="lg-w-25pc w-50pc col-lg-3 col-md-6">
<div class="footer-info">
<h3>DLTEO</h3>
<p>Science Park Graz GmbH<br>
Stremayrgasse 16/IV, 8010 Graz<br><br>
<strong>Phone:</strong> +43 316 873 9101<br>
<strong>Email:</strong> info@sciencepark.at<br>
</p>
<div class="social-links mt-3">
<a href="#" class="relative p-5 br-round white hover-scale-up-1 ease-400"><i
data-feather="twitter" class="absolute-center h-4"></i></a>
<a href="#" class="relative p-5 br-round white hover-scale-up-1 ease-400"><i
data-feather="mail" class="absolute-center h-4"></i></a>
<a href="#" class="relative p-5 br-round white hover-scale-up-1 ease-400"><i
data-feather="youtube" class="absolute-center h-4"></i></a>
<a href="#" class="relative p-5 br-round white hover-scale-up-1 ease-400"><i
data-feather="github" class="absolute-center h-4"></i></a>
<a href="#" class="relative p-5 br-round white hover-scale-up-1 ease-400"><i
data-feather="linkedin" class="absolute-center h-4"></i></a>
</div>
</div>
</div>
<div class="lg-w-16pc w-50pc col-lg-2 col-md-6 footer-links">
<h4>About</h4>
<ul>
<li><i data-feather="chevron-right"></i> <a href="#">About Us</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Join Us</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Docs</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Contact us</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Bounty</a></li>
</ul>
</div>
<div class="lg-w-25pc w-50pc col-lg-3 col-md-6 footer-links">
<h4>Latest</h4>
<ul>
<li><i data-feather="chevron-right"></i> <a href="#">News</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Reseach</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Blog</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Airdrop</a></li>
<li><i data-feather="chevron-right"></i> <a href="#">Technology</a></li>
</ul>
</div>
<div class="lg-w-33pc w-50pc col-lg-4 col-md-6 footer-newsletter">
<h4>Our Partners</h4>
<img class="pt-l1" src="assets/images/esa-bic.svg" width="125">
</div>
</div>
</div>
</div>
<div class="container open-sans">
<div class="copyright">
© Copyright <strong>DLTEO</strong>. All Rights Reserved
</div>
<div class="credits">
Made by <a href="https://we-dev.at/">we-dev</a>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll@15.0.0/dist/smooth-scroll.polyfills.min.js"></script>
<script src="assets/js/script.js"></script>
<script src="assets/js/miniature.earth.core.js"></script>
</body>
</html>