-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop.html
More file actions
60 lines (52 loc) · 1.67 KB
/
shop.html
File metadata and controls
60 lines (52 loc) · 1.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<link rel="stylesheet" href="styles.css">
<!-- Add Font Awesome for icons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="shop-container">
<h1>Shop</h1>
<!-- Shop Items -->
<div class="shop-items">
<div class="shop-item">
<div class="skin-color" style="background-color: red;"></div>
<div class="skin-details">
<h2>Red Skin</h2>
<p>Price: 50 points</p>
</div>
<button id="red-skin" class="buy-btn">
<i class="fas fa-store"></i> Buy
</button>
</div>
<div class="shop-item">
<div class="skin-color" style="background-color: blue;"></div>
<div class="skin-details">
<h2>Blue Skin</h2>
<p>Price: 75 points</p>
</div>
<button id="blue-skin" class="buy-btn">
<i class="fas fa-store"></i> Buy
</button>
</div>
<div class="shop-item">
<div class="skin-color" style="background-color: green;"></div>
<div class="skin-details">
<h2>Green Skin</h2>
<p>Price: 100 points</p>
</div>
<button id="green-skin" class="buy-btn">
<i class="fas fa-store"></i> Buy
</button>
</div>
</div>
<!-- Back to Game Button -->
<a href="index.html" class="back-btn">Back to Game</a>
</div>
<script src="shop.js"></script>
</body>
</html>