-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathworkshop.html
73 lines (73 loc) · 2.86 KB
/
workshop.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/all.css">
<title>Festival Store</title>
</head>
<body>
<div class="app" id="app">
<header class="header">
<h1 class="header_logo"><span>Festival Store</span></h1>
<h2 class="header_title">New Videos This Week</h2>
</header>
<section class="store">
<main class="store_content">
<ul class="video_items">
<li class="video_item">
<figure class="video_item_figure">
<img class="video_item_image" src="img/show-1.jpg" />
</figure>
<div class="video_item_details">
The Global Deads
<span class="video_item_price">$9.99</span>
<span class="video_item_meta">55 min<br />1.48 GB 1080p HD</span>
</div>
<button class="btn icon icon-add depressed-icon depressed button_add_to_cart">In Cart</button>
</li>
<li class="video_item">
<figure class="video_item_figure">
<img class="video_item_image" src="img/show-2.jpg" />
</figure>
<div class="video_item_details">
Sep. of Concerns
<span class="video_item_price">$14.95</span>
<span class="video_item_meta">1 hr 29 min<br />737 MB SD</span>
</div>
<button class="btn icon icon-add button_add_to_cart">Add</button>
</li>
<li class="video_item">
<figure class="video_item_figure">
<img class="video_item_image" src="img/show-3.jpg" />
</figure>
<div class="video_item_details">
nln STYLES
<span class="video_item_price">$24.99</span>
<span class="video_item_meta">3 hr 12 min<br />8.52 GB 1080p HD</span>
</div>
<button class="btn icon icon-add button_add_to_cart">Add</button>
</li>
<li class="video_item">
<figure class="video_item_figure">
<img class="video_item_image" src="img/show-4.jpg" />
</figure>
<div class="video_item_details">
Cascade Flex
<span class="video_item_price">$19.95</span>
<span class="video_item_meta">2 hr 37 min<br />3.64 GB 1080p HD</span>
</div>
<button class="btn icon icon-add button_add_to_cart">Add</button>
</li>
</ul>
</main>
<aside class="shopping_cart">
<div class="cart_title">Total:<span class="cart_total">$9.99</span></div><button class="btn button_buy_now">Buy Now</button>
</aside>
</section>
<footer class="footer">
Festival Store - 123 Lorem ipsum dolor sit amet, consectetur adipiscing elit, San Francisco, CA
</footer>
</div>
</body>
</html>