-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (130 loc) · 4.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--""""""""""""""""""""""FAVICON """"""""""""""""""""""-->
<link
rel="shortcut icon"
href="assets/img/favicon.png"
type="image/x-icon"
/>
<!--"""""""""""""""""""" REMIXICONS """"""""""""""""""""-->
<link
href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<!--""""""""""""""'""""' CSS """"""""""""""""""""""""-->
<link rel="stylesheet" href="assets/css/styles.css" />
<title>Responsive NFT website - TMCybers Ntf Markeplace</title>
</head>
<body>
<!--"""""""""""""""""""""""" HEADER """"""""""""""""""-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo"> ntf.io </a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#" class="nav__link active-link">Home </a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">Market </a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">Activity </a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">Comunity </a>
</li>
</ul>
<!-- Close Button -->
<div class="nav__close" id="nav-close">
<i class=""></i>
</div>
<img
src="" alt="" class=""/>
</div>
<!--"""""""""""""""""" Toogle Button """""""""""""""""""""""-->
<div class="nav__toggle" id="nav-toggle">
<i class="ri-bit-coin-line"></i>
</div>
</nav>
</header>
<!--"""""""""""""""""" MAIN """"""""""""""""""""""-->
<main class="main">
<!--"""""""""""""""""""""""" HOME """""""""""""""""""""""-->
<section class="home">
<div class="home__shape-small"></div>
<div class="home__shape-big-1"></div>
<div class="home__shape-big-2"></div>
<img src="assets/img/shape-bg.png" alt="" class="home__shape-bg" />
<div class="home__container container">
<div class="home__info">
<h1 class="home__title">
<span>Discover</span> <br />
Collect, and <br />
sell NFTs.
</h1>
<p class="home__description">
Explore on the world largest NFT marketplace
</p>
<a href="#" class="home__button">EXPLORE</a>
</div>
<div class="home__group">
<div class="home__images">
<div class="home__img-eth">
<img src="assets/img/ethereum-img.png" alt="home image" />
</div>
<div class="home__img-orbe">
<img src="assets/img/orbe-img.png" alt="home image" />
</div>
</div>
<div class="home__data">
<div>
<h2 class="home__data-number">26K+</h2>
<span class="home__data-subtitle">Artwork</span>
</div>
<div>
<h2 class="home__data-number">18K</h2>
<span class="home__data-subtitle">Auction</span>
</div>
<div>
<h2 class="home__data-number">8K</h2>
<span class="home__data-subtitle">Artist</span>
</div>
</div>
</div>
<div class="home__footer">
<div>
<span class="home__footer-title">Current Bid</span>
<h3 class="home__footer-number">2.00 ETH</h3>
<span class="home__footer-subtitle">$9045.67</span>
</div>
<div>
<span class="home__footer-title">Auction ending in</span>
<div class="home__footer-time">
<div class="home__footer-counter">
<h3 class="home__footer-number">06</h3>
<span class="home__footer-subtitle">hours</span>
</div>
<div class="home__footer-counter">
<h3 class="home__footer-number">26</h3>
<span class="home__footer-subtitle">minutes</span>
</div>
<div class="home__footer-counter">
<h3 class="home__footer-number">50</h3>
<span class="home__footer-subtitle">seconds</span>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!--"""""""""""""""""" SCROLLREVEAL """"""""""""""""""""""""""-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>