-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (113 loc) · 6.69 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Minted</title>
<link rel="shortcut icon" href="./static/customlogos/logo.png" type="image/png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,800" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Open Sans' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="./static/styles/index.css">
</head>
<body>
<!-- HTML for Top NavigationBar -->
<header>
<nav class="navbar navbar-custom">
<a href="#home" class="navbar-brand" style="float: left;"><img src="./static/customlogos/MintedBrand.png"
alt="Logo"></a>
<!-- <nav> contain HOME, ABOUT, CONTACT US tabs -->
<ul class="nav nav-tabs justify-content-end" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" href="#home" id="home-tab" data-toggle="tab" role="tab"
aria-controls="home" aria-selected="true">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about" id="about-tab" data-toggle="tab" role="tab" aria-controls="about"
aria-selected="false">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact" id="contact-tab" data-toggle="tab" role="tab"
aria-controls="contact" aria-selected="false">Contact Us</a>
</li>
</ul>
</nav>
</header>
<!-- HTML for Contents -->
<main>
<div class="tab-content" id="myTabContent">
<!-- HTML for Home Tab -->
<div class="container tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
<div>This is a home Tab</div>
<!-- Banner -->
<div class="banner">Discover & Collect extraordinary NFTs from BitClout</div>
<div id="container1" class="grid-container container">
<!-- Card Component -->
<div class="card grid-item">
<img src="./static/images/card_image.png" alt="image">
<!-- A div with card details class to hold the details in the card -->
<div class="card-details">
<span class="tag">Nature</span>
<span class="tag">Lake</span>
<!-- A div with name class for the name fo the card -->
<div class="name">Lago di Braies</div>
<p>This is a decription of the card</p>
<button>Read More</button>
</div>
</div>
<div class="card grid-item">
<img src="./static/images/card_image.png" alt="image">
<!-- A div with card details class to hold the details in the card -->
<div class="card-details">
<span class="tag">Nature</span>
<span class="tag">Lake</span>
<!-- A div with name class for the name fo the card -->
<div class="name">Lago di Braies</div>
<p>This is a decription of the card</p>
<button>Read More</button>
</div>
</div>
<div class="card grid-item">
<img src="./static/images/card_image.png" alt="image">
<!-- A div with card details class to hold the details in the card -->
<div class="card-details">
<span class="tag">Nature</span>
<span class="tag">Lake</span>
<!-- A div with name class for the name fo the card -->
<div class="name">Lago di Braies</div>
<p>This is a decription of the card</p>
<button>Read More</button>
</div>
</div>
<div class="card grid-item">
<img src="./static/images/card_image.png" alt="image">
<!-- A div with card details class to hold the details in the card -->
<div class="card-details">
<span class="tag">Nature</span>
<span class="tag">Lake</span>
<!-- A div with name class for the name fo the card -->
<div class="name">Lago di Braies</div>
<p>This is a decription of the card</p>
<button>Read More</button>
</div>
</div>
</div>
</div>
<!-- HTML for About Tab -->
<div class="container tab-pane fade" id="about" role="tabpanel" aria-labelledby="about-tab">This is a sample
of About Tab</div>
<!-- HTML for Contact Tab -->
<div class="container tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab"> This is a
sample of Contact Tab</div>
</div>
</main>
<footer>
This is a footer block
</footer>
<!-- Framework Related Code -- Bootstrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>