-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeals.html
68 lines (62 loc) · 2.97 KB
/
deals.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Deals - South Carolina Gamecocks Merchandise</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Student Deals - Gamecocks Apparel</h1>
<p>Find the best discounts on your favorite Gamecocks merchandise!</p>
</header>
<nav>
<h2>Explore More Deals</h2>
<a href="index.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="deals.html">DEALS</a>
<a href="contact.html">CONTACT</a>
</nav>
<main>
<section class="product-grid">
<!-- Product 1 -->
<div class="product-item">
<a href="https://stewartsimmons.com/collections/south-carolina-sale/products/the-forever-to-thee-grand-tee" target="_blank">
<img src="Forever To Thee Grand Tee.png" alt="Forever To Thee Grand Tee" class="product-image">
<p>The Forever To Thee Grand Tee</p>
<p class="price">Now $25.39</p>
</a>
</div>
<!-- Product 2 -->
<div class="product-item">
<a href="https://stewartsimmons.com/collections/south-carolina-sale/products/the-gamecocks-balloon-pullover" target="_blank">
<img src="Gamecocks Ballon Pullover.png" alt="Gamecocks Balloon Pullover" class="product-image">
<p>Gamecocks Balloon Pullover</p>
<p class="price">Now $33.00</p>
</a>
</div>
<!-- Product 3 -->
<div class="product-item">
<a href="https://www.fanatics.com/college/south-carolina-gamecocks/t-shirts/south-carolina-gamecocks-line-corps-t-shirt-black/o-50+t-46896422+d-19555779+f-748879021+z-8-3477390222?utm_medium=cse&_s=GPA_CA&sku=200902040" target="_blank">
<img src="South Carolina Line Corps T-Shirt.png" alt="Line Corps T-Shirt" class="product-image">
<p>South Carolina Line Corps T-Shirt</p>
<p class="price">Now $29.99</p>
</a>
</div>
<!-- Product 4 -->
<div class="product-item">
<a href="https://www.mastgeneralstore.com/champion/university-of-south-carolina-gamecocks-short-sleeve-tshirt-245456?srsltid=AfmBOorUIz6gNMDoJt5OaWGB1hVFNWPt7869491tzXNWfDstLKEgTLN_qt8" target="_blank">
<img src="Champion Gamecocks Tee.png" alt="Champion Gamecocks Tee" class="product-image">
<p>Champion Gamecocks Tee</p>
<p class="price">Now $27.49</p>
</a>
</div>
</section>
</main>
<footer>
<a href="about.html">Go to About Page</a> |
<a href="contact.html">Go to Contact Page</a>
</footer>
</body>
</html>