-
Notifications
You must be signed in to change notification settings - Fork 1
/
nft-collection.html
63 lines (44 loc) · 1.42 KB
/
nft-collection.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
<!--
https://www.youtube.com/watch?v=UAH4dYaA-uI
let currentDate = new Date();
let cDay = currentDate.getDate();
let cMonth = currentDate.getMonth() + 1;
let cYear = currentDate.getFullYear();
console.log("<b>" + cDay + "/" + cMonth + "/" + cYear + "</b>");
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>NFT Collection</title>
<link rel = "stylesheet" type = "text/css" href = "/nft-collection.css">
<script src="/nft-collection.js"></script>
</head>
<nav>
<div class="sidenav">
<a href="/index.html"><div>About</div></a>
<a href="/resume.html"><div>Resume</div></a>
<a href="/projects.html"><div>Projects</div></a>
<a href="/timeline.html"><div>Timeline</div></a>
<a href="/nft-collection.html"><div>NFT Collection</div></a>
<a href="/contact.html"><div>Contact</div></a>
</div>
</nav>
<body onload="getOpenseaItems()">
<div>
<center>
<h1 style="padding-left: 0px; padding-top:0px;">NFT Collection <script>printDate()</script>
</h1>
</center>
</div>
</div>
<div class='w-full flex justify-center'>
<div id='openseaItems' class="w-1/2 grid grid-cols-4 gap-2">
<!-- Opensea items go here -->
</div>
</div>
</body>
<div class="bottomText">
created with HTML/CSS/JS
</div>
</html>