-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
222 lines (197 loc) · 5.97 KB
/
Copy pathindex.html
File metadata and controls
222 lines (197 loc) · 5.97 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Patek Philippe Watches</title>
<link rel="icon" href="icon.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="cart-icon" onclick="openCart()">
🛒 Cart (<span id="cartCount">0</span>)
</div>
<div class="Top">
<h1>PATEK PHILIPPE</h1>
<p class="tagline">Timeless Luxury • Swiss Excellence Since 1839</p>
<img src="main.avif" alt="Patek Philippe Banner" />
</div>
<h2>Recent Models</h2>
<div class="Main">
<div class="Sub">
<img
src="recent models 1.jpg"
alt="Watch"
onclick="
showDetails(
'Nautilus 5711',
'$35,000',
'Sport Collection',
'Iconic luxury sports watch with a rounded octagonal bezel and elegant design.',
)
"
/>
<button onclick="addToCart('Nautilus 5711')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="recent models 2.webp"
alt="Watch"
onclick="
showDetails(
'Aquanaut 5167A',
'$28,000',
'Aquanaut Collection',
'Modern sporty luxury watch introduced in 1997 with a tropical strap.',
)
"
/>
<button onclick="addToCart('Aquanaut 5167A')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="recent models 3.webp"
alt="Watch"
onclick="
showDetails(
'Calatrava 6119G',
'$32,000',
'Calatrava Collection',
'Timeless dress watch known for simplicity and Swiss craftsmanship.',
)
"
/>
<button onclick="addToCart('Calatrava 6119G')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="recent models 4.jpg"
alt="Watch"
onclick="
showDetails(
'Cubitus',
'$45,000',
'Modern Collection',
'One of the newest Patek Philippe collections with a bold square-inspired design.',
)
"
/>
<button onclick="addToCart('Cubitus')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="recent models 5.webp"
alt="Watch"
onclick="
showDetails(
'Complications',
'$52,000',
'Complications Collection',
'Elegant watches featuring advanced horological complications.',
)
"
/>
<button onclick="addToCart('Complications')">Add to Cart</button>
</div>
</div>
<h2>Classic Models</h2>
<div class="Main">
<div class="Sub">
<img
src="classics model 1.jpg"
alt="Watch"
onclick="
showDetails(
'Grand Complications',
'$650,000',
'Grand Complications',
'The pinnacle of Swiss watchmaking with perpetual calendars and minute repeaters.',
)
"
/>
<button onclick="addToCart('Grand Complications')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="classic model 2.jpg"
alt="Watch"
onclick="
showDetails(
'Golden Ellipse',
'$40,000',
'Golden Ellipse Collection',
'Elegant watch inspired by the golden ratio.',
)
"
/>
<button onclick="addToCart('Golden Ellipse')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="classic model 3.webp"
alt="Watch"
onclick="
showDetails(
'Twenty~4',
'$18,000',
'Ladies Collection',
'Luxury watch designed for modern women.',
)
"
/>
<button onclick="addToCart('Twenty~4')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="classic model 4.webp"
alt="Watch"
onclick="
showDetails(
'Gondolo',
'$25,000',
'Art Deco Collection',
'Elegant rectangular case inspired by Art Deco styling.',
)
"
/>
<button onclick="addToCart('Gondolo')">Add to Cart</button>
</div>
<div class="Sub">
<img
src="classic model 5.jpg"
alt="Watch"
onclick="
showDetails(
'World Time 5230P',
'$60,000',
'World Time Collection',
'Displays multiple world time zones simultaneously.',
)
"
/>
<button onclick="addToCart('World Time 5230P')">Add to Cart</button>
</div>
</div>
<div id="watchModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2 id="watchName"></h2>
<p><strong>Price:</strong> <span id="watchPrice"></span></p>
<p><strong>Collection:</strong> <span id="watchCollection"></span></p>
<p id="watchDescription"></p>
</div>
</div>
<div id="cartModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeCart()">×</span>
<h2>Your Cart</h2>
<ul id="cartItems"></ul>
</div>
</div>
<footer>
<h3>Patek Philippe Collection</h3>
<p>contact@patekphilippe.com</p>
</footer>
<script src="script.js"></script>
</body>
</html>