-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (70 loc) · 2.9 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
<!DOCTYPE html>
<html>
<head>
<title>HOME</title>
<link rel="icon" href="images/Ukay-Ni-Lola.png" type="image/x-icon">
<meta name="description" content="This is the description">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="main-header">
<nav class="nav main-nav">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="store.html">STORE</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<h1 class="band-name band-name-large">Ukay ni Lola</h1>
<div class="container-header">
<button type="button" class="btn btn-header">New Product Available</button>
</div>
</header>
<section class="content-section container">
<h2 class="section-header">BUNDLE PRODUCT</h2>
<div>
<div class="tour-row">
<span class="tour-item tour-date">Jun 18</span>
<span class="tour-item tour-city">Imported</span>
<span class="tour-item tour-arena">Korean Style</span>
<button type="button" class="tour-item tour-btn btn btn-primary">Bundle Price</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 19</span>
<span class="tour-item tour-city">Imported</span>
<span class="tour-item tour-arena">Pants</span>
<button type="button" class="tour-item tour-btn btn btn-primary">Bundle Price</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 22</span>
<span class="tour-item tour-city">Class A</span>
<span class="tour-item tour-arena">Over size</span>
<button type="button" class="tour-item tour-btn btn btn-primary">Bundle Price</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 29</span>
<span class="tour-item tour-city">Original</span>
<span class="tour-item tour-arena">Sports</span>
<button type="button" class="tour-item tour-btn btn btn-primary">Bundle Price</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">AUG 2</span>
<span class="tour-item tour-city">Original</span>
<span class="tour-item tour-arena">Shorts</span>
<button type="button" class="tour-item tour-btn btn btn-primary">Bundle Price</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">AUG 7</span>
<span class="tour-item tour-city">Class B</span>
<span class="tour-item tour-arena">Formal</span>
<button type="button" class="tour-item tour-btn btn btn-primary">Bundle Price</button>
</div>
</div>
</section>
<footer class="main-footer">
<div class="main-footer-container">
<h3 class="FOOTER">Midterm Project in P-20</h3>
</div>
</footer>
</body>
</html>