-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-store.html
More file actions
30 lines (29 loc) · 1.06 KB
/
Copy pathtest-store.html
File metadata and controls
30 lines (29 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample E-commerce Store - Testing ShopCall SDK</title>
<style>
body { font-family: sans-serif; max-width: 800px; margin: 40px auto; padding: 20px; }
h1 { color: #333; }
.product { border: 1px solid #ddd; padding: 20px; border-radius: 8px; margin: 20px 0; }
.price { color: #e53e3e; font-size: 24px; font-weight: bold; }
</style>
</head>
<body>
<h1>🛍️ Demo Shopping Website</h1>
<div class="product">
<h2>Banarasi Silk Saree</h2>
<p class="price">₹4,999</p>
<p>Beautiful handwoven Banarasi silk saree with gold zari work.</p>
</div>
<div class="product">
<h2>Kanjivaram Silk Saree</h2>
<p class="price">₹7,499</p>
<p>Traditional Kanjivaram with temple border design.</p>
</div>
<!-- ShopCall SDK - Replace YOUR_SDK_KEY with your actual key from dashboard -->
<script src="http://localhost:5000/sdk/shopcall-sdk.js" data-store="sc_live_d7a0a746"></script>
</body>
</html>