-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
65 lines (56 loc) · 2.73 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
<!DOCTYPE html>
<html>
<head>
<title>NF3D - Authenticate</title>
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script src="https://unpkg.com/moralis/dist/moralis.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/main.js"></script>
<link href="css/cover.css" rel="stylesheet">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
</head>
<body class="text-center" style="background-image: url('images/galaxy.gif');">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand" style="text-shadow: 3px -3px 1px #CE0D39, -3px 3px 1px #1E34CE;">NF3D</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link" href="https://github.com/weronikazak">Github</a>
</nav>
</div>
</header>
<main role="main" class="inner cover">
<!-- <h1 class="cover-heading" style="font-size:50px; text-shadow: 3px -3px 1px #CE0D39, -3px 3px 1px #1E34CE;">NF3D</h1> -->
<br>
<p class="lead" style="font-size: 28px;">Enter the Metaverse with your NFT collectibles.
<br>
Create exportable 3D models on handful of blockchains using your existing NFTs.</p>
<br>
<p class="lead">
<a href="#" class="btn btn-lg btn-secondary" id="btn-login" onclick="login()">Authenticate with MetaMask</a>
</p>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Project created for the <a href="https://buildquest.ethglobal.com/">ETH BuildQuest Hakathon</a>, 2022 by <a href="https://www.linkedin.com/in/weronikawzak/">Weronika Zak</a>.</p>
</div>
</footer>
</div>
</body>
</html>