-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
145 lines (141 loc) · 5.56 KB
/
shop.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="fansite.css">
<title>Fansite</title>
</head>
<body>
<!-- Bannière photo + menu -->
<header>
<nav class="header">
<img src="/sofiane-pamart-header-concert-olympia-paris.webp" alt="">
<div class="menu">
<a href="index.html"><img class="logo" src="/Logo-Negatif.png" alt=""></a>
<a href="discography.html">
<p>Discography</p>
</a>
<a href="shop.html">
<p>Shop</p>
</a>
<a href="tour.html">
<p>Tour</p>
</a>
<a href="gallery.html">
<p>Gallery</p>
</a>
<div class="rsheader">
<a href="https://www.instagram.com/sofianepamart/"><img class="logo-rs" src="/logo-insta.png"
alt=""></a>
<a href="https://twitter.com/sofianepamart"><img class="logo-rs" src="/logo-twiter.png" alt=""></a>
<a href="https://open.spotify.com/artist/4RB2EEsmLhQTOSVQQpDzNg"><img class="logo-rs"
src="/logo-spotify.png" alt=""></a>
<a href="https://www.youtube.com/sofianepamart"><img class="logo-rs" src="/logo-YT.png" alt=""></a>
</div>
</div>
</nav>
</header>
<main>
<div class="shop">
<div class="card">
<img src="tshirt.png" alt="">
<h1>Début international tour - T-Shirt</h1>
<p class="price">40 euros</p>
<p>Limited Edition</p>
<p>Oversized / 200gm / 100% organic cotton</p><br>
<p><button>ORDER</button></p>
</div>
<div class="card">
<img src="/lovinglife.jpg" alt="">
<h1>Loving life-The vinyl</h1>
<p class="price">30 euros</p>
<p>
10 Tracks of Funk, Love & Sun.
</p>
<p>Premium vinyl is now available.</p><br>
<button>ORDER</button>
</div>
<div class="card">
<img src="/letter.png">
<h1>Letter-Partitions</h1>
<p class="price">35 euros</p><br>
<button>ORDER</button></p>
</div>
<div class="card">
<img src="carreDO.jpg" alt="">
<h1>Carré Célébration PLANET Disque d’Or</h1>
<p class=" price">120 euros</p>
<p>100% Soie de mûrier / Mulberry Silk</p>
<p>Limited edition of 100 pieces</p>
<p class="soldout">SOLD OUT</p>
</div>
<div class="card">
<img src="partitionbleue.jpg" alt="">
<h1>Planet Gold-Partitions</h1>
<p class=" price">35 euros</p><br>
<button>ORDER</button>
</div>
<div class="card">
<img src="/planetefermee.jpg" alt="">
<h1>Planete le livre</h1>
<p class=" price">60 euros</p><br>
<button>ORDER</button>
</div>
<div class="card">
<img src="/planetevinyle.jpg" alt="">
<h1>Planet-Vinyl</h1>
<p class=" price">35 euros</p><br>
<p><button>ORDER</button></p>
</div>
<div class="card">
<img src="/planetecd.jpg" alt="">
<h1>Planet-CD</h1>
<p class="price">25 euros</p><br>
<button>ORDER</button>
</div>
<div class="card">
<img src="lettercd.jpg" alt="">
<h1>Letter-CD</h1>
<p class=" price">25 euros</p><br>
<button>ORDER</button>
</div>
<div class="card">
<img src="/lettervinyle.png" alt="">
<h1>Letter-CD</h1>
<p class=" price">35 euros</p><br>
<button>ORDER</button>
</div>
</div>
</main>
<footer>
<div class="footer">
<div class="rs">
<a href="https://www.instagram.com/sofianepamart/"><img class="logo-rs" src="/logo-insta.png"
alt=""></a>
<a href="https://twitter.com/sofianepamart"><img class="logo-rs" src="/logo-twiter.png" alt=""></a>
<a href="https://open.spotify.com/artist/4RB2EEsmLhQTOSVQQpDzNg"><img class="logo-rs"
src="/logo-spotify.png" alt=""></a>
<a href="https://www.youtube.com/sofianepamart"><img class="logo-rs" src="/logo-YT.png" alt=""></a>
</div>
<a href=""><img class="logofooter" src="/Logo-Negatif.png" alt=""></a>
<div class="infosfooter">
<a href="discography.html">
<p>Discography</p>
</a>
<a href="shop.html">
<p>Shop</p>
</a>
<a href="tour.html">
<p>Tour</p>
</a>
<a href="gallery.html">
<p>Gallery</p>
</a>
<a href="https://www.sofianepamart.com/">Site officiel</a>
</div>
</div>
</footer>
</body>
</html>