-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
82 lines (62 loc) · 2.76 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>NFTs</title>
<script language="javascript" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- <script language="javascript" type="text/javascript" src="web3.min.js"></script> -->
<script src="https://unpkg.com/[email protected]/dist/web3.min.js"></script>
<script language="javascript" type="text/javascript" src="contractJSON.js"></script>
<script src="https://unpkg.com/[email protected]/dist/index.js"
integrity="sha384-5bXRcW9kyxxnSMbOoHzraqa7Z0PQWIao+cgeg327zit1hz5LZCEbIMx/LWKPReuB"
crossorigin="anonymous"></script>
<script src="https://bundle.run/[email protected]"></script>
</head>
<body>
<div class="navbar">
<a href="home.html">Home</a>
<a href="createNFT.html">Create NFT</a>
<a href="transferNFT.html">Transfer NFT</a>
</div>
<h1>NFTs</h1>
<ul class="legend" id="list">
<!-- <li class = "img1">
<figure>
<img src="img_chania.jpg" alt="Flowers in Chania">
<figcaption>butifull garden</figcaption>
<figcaption>$<span> 10</span></figcaption>
</figure>
</li>
<li class = "img1">
<figure>
<img src="img_chania.jpg" alt="Flowers in Chania" width="300" height="250">
<figcaption>butifull garden</figcaption>
<figcaption>$<span> 10</span></figcaption>
</figure>
</li>
<li class = "img1">
<figure>
<img src="img_chania.jpg" alt="Flowers in Chania" width="300" height="250">
<figcaption>butifull garden</figcaption>
<figcaption>$<span> 10</span></figcaption>
</figure>
</li> -->
</ul>
<!-- <ul class="legend">
<li class = "img1"></li>
<img src="img_chania.jpg" alt="Flowers in Chania" width="300" height="250" >
</li>
<li class="img2">
<img src="img_chania.jpg" alt="Flowers in Chania" width="300" height="250">
</li>
<li class = "img3">
<img src="img_chania.jpg" alt="Flowers in Chania" width="300" height="250">
</li>
<br>
</ul> -->
<script src="script.js"></script>
</body>
</html>