-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhot_deals.jsp
56 lines (56 loc) · 1.12 KB
/
hot_deals.jsp
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
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- HOT DEAL SECTION -->
<div id="hot-deal" class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-12">
<div class="hot-deal">
<ul class="hot-deal-countdown">
<li>
<div>
<h3>02</h3>
<span>Days</span>
</div>
</li>
<li>
<div>
<h3>10</h3>
<span>Hours</span>
</div>
</li>
<li>
<div>
<h3>34</h3>
<span>Mins</span>
</div>
</li>
<li>
<div>
<h3>60</h3>
<span>Secs</span>
</div>
</li>
</ul>
<h2 class="text-uppercase">hot deal this week</h2>
<p>New Collection Up to 50% OFF</p>
<a class="primary-btn cta-btn" href="#">Shop now</a>
</div>
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /HOT DEAL SECTION -->
</body>
</html>