-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct-lending.html
More file actions
155 lines (155 loc) · 5.38 KB
/
product-lending.html
File metadata and controls
155 lines (155 loc) · 5.38 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
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns# product: http://ogp.me/ns/product#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Landing Page</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Super Amazing Product",
"image": "https://www.example.com/product-image.jpg",
"description": "This is a super amazing product that will change your life.",
"brand": {
"@type": "Brand",
"name": "Amazing Brand"
},
"sku": "12345",
"mpn": "67890",
"offers": {
"@type": "Offer",
"url": "https://www.example.com/product-page",
"priceCurrency": "RUB",
"price": "2999.99",
"priceValidUntil": "2025-12-31",
"itemCondition": "https://schema.org/NewCondition",
"availability": "https://schema.org/InStock",
"seller": {
"@type": "LocalBusiness",
"name": "Amazing Brand Store",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Business Street",
"addressLocality": "Moscow",
"addressRegion": "Moscow Region",
"postalCode": "101000",
"addressCountry": "RU"
},
"telephone": "+7-495-123-4567",
"url": "https://www.example.com",
"geo": {
"@type": "GeoCoordinates",
"latitude": 55.7558,
"longitude": 37.6173
},
"priceRange": "1000-5000 RUB",
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "09:00",
"closes": "18:00"
}
],
"sameAs": [
"https://www.facebook.com/mycompany",
"https://twitter.com/mycompany"
],
"image": "https://www.example.com/store-logo.jpg"
},
"shippingDetails": {
"@type": "OfferShippingDetails",
"deliveryMethod": {
"@type": "DeliveryMethod",
"name": "Mail",
"url": "https://www.example.com/shipping-info"
},
"shippingDestination": {
"@type": "DefinedRegion",
"addressCountry": "RU"
},
"shippingRate": {
"@type": "MonetaryAmount",
"currency": "RUB",
"value": "250.00"
},
"deliveryTime": {
"@type": "ShippingDeliveryTime",
"handlingTime": {
"@type": "QuantitativeValue",
"minValue": 1,
"maxValue": 2,
"unitCode": "DAY"
},
"transitTime": {
"@type": "QuantitativeValue",
"minValue": 3,
"maxValue": 5,
"unitCode": "DAY"
}
}
},
"hasMerchantReturnPolicy": {
"@type": "MerchantReturnPolicy",
"returnFees": "https://schema.org/FreeReturn",
"returnMethod": "https://schema.org/ReturnByMail",
"applicableCountry": "RU",
"merchantReturnDays": 14,
"returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow"
}
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "150"
},
"review": [
{
"@type": "Review",
"author": {
"@type": "Person",
"name": "John Doe"
},
"datePublished": "2024-05-01",
"reviewBody": "This product is fantastic! It changed my life.",
"name": "Great product!"
}
]
}
</script>
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Super Amazing Product">
<meta property="og:description" content="This is a super amazing product that will change your life.">
<meta property="og:url" content="https://www.example.com/product-page">
<meta property="og:type" content="product">
<meta property="og:locale" content="ru_RU">
<meta property="og:price:amount" content="2999.99">
<meta property="og:price:currency" content="RUB">
<meta property="og:availability" content="InStock">
<meta property="og:brand" content="Amazing Brand">
<meta property="og:sku" content="12345">
<meta property="og:product:category" content="Electronics">
<meta property="og:product:condition" content="New">
<meta property="og:image" content="https://www.example.com/product-image.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Amazing Brand">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@amazingbrand">
<meta name="twitter:title" content="Super Amazing Product">
<meta name="twitter:description" content="This is a super amazing product that will change your life.">
<meta name="twitter:image" content="https://www.example.com/product-image.jpg">
<meta name="twitter:image:alt" content="Super Amazing Product">
</head>
<body>
<!-- Content of the landing page -->
</body>
</html>