-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (82 loc) · 3.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/fontello.css">
<title>Shoes Sell</title>
</head>
<body>
<header class="header">
<a href="#"><img src="img/logo.png" class="logo"></a>
<div class="btn-menu" id="btn-menu">
<span></span>
<span></span>
<span></span>
</div>
<ul class="menu" id="menu">
<li><a href="#" class="menu-links active">Home</a></li>
<li><a href="#" class="menu-links">Products</a></li>
<li><a href="#" class="menu-links">About Us</a></li>
<li><a href="#" class="menu-links">Contact Us</a></li>
<div class="social">
<a href="#" class="icon-twitter-circled"></a>
<a href="#" class="icon-linkedin-circled"></a>
<a href="#" class="icon-facebook-circled"></a>
</div>
<p class="copy">© Copyright. @StartCodify All Rights Reserved.</p>
</ul>
</header>
<main class="main" id="main">
<div class="content">
<div class="text">
<h1 class="glass">BIG SALE</h1>
<h1 class="h1">BIG SALE</h1>
<a href="#" class="btn" id="shop-btn">SHOP NOW</a>
</div>
<div class="box">
<img src="img/circle.png" class="circle" id="circle">
<img src="img/zapatos.png" class="img active" id="shoe">
<img src="img/zapatos-2.png" class="img" id="shoe2">
<img src="img/zapatos-3.png" class="img" id="shoe3">
<div class="tooltips">
<span class="active" id="btnS1"></span>
<span id="btnS2"></span>
<span id="btnS3"></span>
</div>
</div>
<div class="sale">
<span>OVER</span>
<span class="num">250</span>
<span class="sty">STYLES</span>
<span class="aval">AVAILABLE</span>
</div>
<div class="sale-text">
<div class="text">
<h1 class="glass">BIG SALE</h1>
<h1 class="h1">BIG SALE</h1>
<a href="#" class="btn" id="shop-btn">SHOP NOW</a>
</div>
<div class="sale">
<span>OVER</span>
<span class="num">250</span>
<span class="sty">STYLES</span>
<span class="aval">AVAILABLE</span>
</div>
</div>
</div>
<footer class="footer">
<p>© COPYRIGHT. @STARTCODIFY ALL RIGHTS RESERVED.</p>
<div class="social">
<a href="#" class="icon-twitter-circled"></a>
<a href="#" class="icon-linkedin-circled"></a>
<a href="#" class="icon-facebook-circled"></a>
</div>
</footer>
</main>
<script src="js/gsap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>