On long pages, provide a list of contents with links that take users to the corresponding content farther down the page.
For long pages with distinct sections, add a short, clickable list of sections at the top of the page.
This provides a page outline, and allows users to quickly navigate to specific information.
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
Use the
lang
attribute to identify the language of the page.
<html pxm-xmlns='...'><head>...</head><body><header>...</header>...</body></html>
In HTML add a lang
attribute containing a language code to the html
tag, and in PDF set the language using Document Properties in Acrobat. This allows screen readers to pronounce words correctly.
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
5
<head>
6
7
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
Do not use the
meta viewport
tag to disable zoom.
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' >
Setting user-scalable=no
or maximum-scale
to less than 2.0 prevents
zooming small text to make it readable.
Note that iOS 10+ ignores this setting.
End tag for
meta
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 9 HTML Validation
9
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
10
End tag for
meta
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 11 HTML Validation
11
<meta name="applicable-device"content="pc">
12
End tag for
meta
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 13 HTML Validation
13
<meta http-equiv="X-UA-Compatible" content="IE=edge">
14
15
<meta http-equiv="Cache-Control" content="no-transform"/>
16
End tag for
meta
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 17 HTML Validation
17
<meta http-equiv="pragma" content="no-cache">
18
End tag for
meta
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 19 HTML Validation
19
<meta name="renderer" content="webkit">
20
21
<meta http-equiv="Cache-Control" content="no-siteapp"/>
22
23
<title>
24
Benson Hedges Cigarettes – Tobaccove</title>
25
End tag for
meta
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 26 HTML Validation
26
<meta name="keywords" content="Benson Hedges Cigarettes ">
27
End tag for
meta
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 28 HTML Validation
28
<meta name="description" content="Benson & Hedges Cigarettes, established in 1873 by Richard Benson and William Hedges in London, are recognized for their use of high-quality materials and...">
29
End tag for
link
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 30 HTML Validation
30
<link rel="stylesheet" href="/themes/ecshop2010/css/css.css?v=1.3" type="text/css">
31
32
<script type="text/javascript" src="/themes/ecshop2010/js/jquery.min.js">
33
</script>
34
35
<script type="text/javascript" src="/themes/ecshop2010/js/jquery.superslide.2.1.1.js">
36
</script>
37
End tag for
link
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 38 HTML Validation
38
<link rel="shortcut icon" href="/themes/ecshop2010/images/favicon.gif" type="image/gif">
39
40
<link rel="canonical" href="https://www.tobaccove.com/category-3-benson-hedges-cigarettes" />
41
42
</head>
43
44
<body>
45
Element
header
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 46 HTML Validation
46
<header>
47
48
<div class="logo tc agency">
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Tobaccove'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
End tag for
img
omitted, but OMITTAG NO was specified
start tag was here.
This often occurs in XHTML on tags like img
, link
, meta
and br
when the closing / has been omitted.
Line 49 HTML Validation
49
<img src="/themes/ecshop2010/images/1543896934143.png" alt="Tobaccove">
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='/'>Tobaccove</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
50
<a href="/">
51
Tobaccove</a>
52
</div>
53
54
There is no attribute
class
.
This happens when the version of HTML used on this page doesn't support an attribute with this name. This can happen
if the attribute is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 attributes and Strict DOCTYPEs don't allow stylistic attributes
which were present in earlier versions of HTML.
Line 54 HTML Validation
Element
nav
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 54 HTML Validation
<nav class="menu tc">
55
56
<ul>
57
58
<li class="menuItem menulist">
59
60
Clickable controls should have an ARIA role.
<a class='menuTitle'>Cigarette<span class='menu-more'>+</span></a>
Controls that respond to clicks should be given an ARIA role such as role=button
or role=link
.
div
span
and a
elements without an href
attribute have no semantic role.
Clickable controls should be keyboard accessible.
<a class='menuTitle'>Cigarette<span class='menu-more'>+</span></a>
Add tabindex=0
to allow keyboard users to tab to the control.
<a class="menuTitle">
61
Cigarette<span class="menu-more">
62
+</span>
63
</a>
64
65
<dl class="subMenu menu-hide menu-down">
66
67
<span>
68
</span>
69
70
<dt class="t4 agency">
71
Cigarettes of The World</dt>
72
73
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
74
<i class="icon iconfont spcigar-shuangjiantouxia">
75
</i>
76
<a href="/category-1-american-spirit-cigarettes" >
77
American Spirit</a>
78
</dd>
79
80
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
81
<i class="icon iconfont spcigar-shuangjiantouxia">
82
</i>
83
<a href="/category-2-ararat-cigarettes" >
84
Ararat</a>
85
</dd>
86
87
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
88
<i class="icon iconfont spcigar-shuangjiantouxia">
89
</i>
90
<a href="/category-3-benson-hedges-cigarettes" >
91
Benson Hedges</a>
92
</dd>
93
94
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
95
<i class="icon iconfont spcigar-shuangjiantouxia">
96
</i>
97
<a href="/category-4-bond-cigarettes" >
98
Bond</a>
99
</dd>
100
101
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
102
<i class="icon iconfont spcigar-shuangjiantouxia">
103
</i>
104
<a href="/category-5-camel-cigarettes" >
105
Camel</a>
106
</dd>
107
108
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
109
<i class="icon iconfont spcigar-shuangjiantouxia">
110
</i>
111
<a href="/category-6-capri-cigarettes" >
112
Capri</a>
113
</dd>
114
115
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
116
<i class="icon iconfont spcigar-shuangjiantouxia">
117
</i>
118
<a href="/category-7-chesterfield-cigarettes" >
119
Chesterfield</a>
120
</dd>
121
122
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
123
<i class="icon iconfont spcigar-shuangjiantouxia">
124
</i>
125
<a href="/category-8-cigaronne-cigarettes" >
126
Cigaronne</a>
127
</dd>
128
129
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
130
<i class="icon iconfont spcigar-shuangjiantouxia">
131
</i>
132
<a href="/category-9-corset-cigarettes" >
133
Corset</a>
134
</dd>
135
136
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
137
<i class="icon iconfont spcigar-shuangjiantouxia">
138
</i>
139
<a href="/category-10-davidoff-cigarettes" >
140
Davidoff</a>
141
</dd>
142
143
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
144
<i class="icon iconfont spcigar-shuangjiantouxia">
145
</i>
146
<a href="/category-11-dunhill-cigarettes" >
147
Dunhill</a>
148
</dd>
149
150
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
151
<i class="icon iconfont spcigar-shuangjiantouxia">
152
</i>
This page contains placeholder text such as Lorem Ipsum, CHANGEME, FIXME or TODO.
<a href='/category-12-esse-cigarettes'>Esse </a>
Line 153
153
<a href="/category-12-esse-cigarettes" >
154
Esse</a>
155
</dd>
156
157
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
158
<i class="icon iconfont spcigar-shuangjiantouxia">
159
</i>
160
<a href="/category-13-gauloises-cigarettes" >
161
Gauloises</a>
162
</dd>
163
164
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
165
<i class="icon iconfont spcigar-shuangjiantouxia">
166
</i>
167
<a href="/category-14-juul-vape-cigarettes" >
168
Juul Vape</a>
169
</dd>
170
171
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
172
<i class="icon iconfont spcigar-shuangjiantouxia">
173
</i>
174
<a href="/category-15-karelia-cigarettes" >
175
Karelia</a>
176
</dd>
177
178
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
179
<i class="icon iconfont spcigar-shuangjiantouxia">
180
</i>
181
<a href="/category-16-kent-cigarettes" >
182
Kent</a>
183
</dd>
184
185
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
186
<i class="icon iconfont spcigar-shuangjiantouxia">
187
</i>
188
<a href="/category-17-kool-cigarettes" >
189
Kool</a>
190
</dd>
191
192
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
193
<i class="icon iconfont spcigar-shuangjiantouxia">
194
</i>
195
<a href="/category-18-lm-cigarettes" >
196
Lm</a>
197
</dd>
198
199
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
200
<i class="icon iconfont spcigar-shuangjiantouxia">
201
</i>
202
<a href="/category-19-lucky-strike-cigarettes" >
203
Lucky Strike</a>
204
</dd>
205
206
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
207
<i class="icon iconfont spcigar-shuangjiantouxia">
208
</i>
209
<a href="/category-20-magna-cigarettes" >
210
Magna</a>
211
</dd>
212
213
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
214
<i class="icon iconfont spcigar-shuangjiantouxia">
215
</i>
216
<a href="/category-21-marlboro-cigarettes" >
217
Marlboro</a>
218
</dd>
219
220
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
221
<i class="icon iconfont spcigar-shuangjiantouxia">
222
</i>
223
<a href="/category-22-monte-carlo-cigarettes" >
224
Monte Carlo</a>
225
</dd>
226
227
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
228
<i class="icon iconfont spcigar-shuangjiantouxia">
229
</i>
230
<a href="/category-23-newport-cigarettes" >
231
Newport</a>
232
</dd>
233
234
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
235
<i class="icon iconfont spcigar-shuangjiantouxia">
236
</i>
237
<a href="/category-24-ome-cigarettes" >
238
Ome</a>
239
</dd>
240
241
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
242
<i class="icon iconfont spcigar-shuangjiantouxia">
243
</i>
244
<a href="/category-25-pall-mall-cigarettes" >
245
Pall Mall</a>
246
</dd>
247
248
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
249
<i class="icon iconfont spcigar-shuangjiantouxia">
250
</i>
251
<a href="/category-26-parliament-cigarettes" >
252
Parliament</a>
253
</dd>
254
255
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
256
<i class="icon iconfont spcigar-shuangjiantouxia">
257
</i>
258
<a href="/category-27-philip-morris-cigarettes" >
259
Philip Morris</a>
260
</dd>
261
262
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
263
<i class="icon iconfont spcigar-shuangjiantouxia">
264
</i>
265
<a href="/category-28-rothmans-cigarettes" >
266
Rothmans</a>
267
</dd>
268
269
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
270
<i class="icon iconfont spcigar-shuangjiantouxia">
271
</i>
272
<a href="/category-29-sobranie-cigarettes" >
273
Sobranie</a>
274
</dd>
275
276
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
277
<i class="icon iconfont spcigar-shuangjiantouxia">
278
</i>
279
<a href="/category-30-rolling-tobacco-cigarettes" >
280
Rolling Tobacco</a>
281
</dd>
282
283
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
284
<i class="icon iconfont spcigar-shuangjiantouxia">
285
</i>
286
<a href="/category-31-vogue-cigarettes" >
287
Vogue</a>
288
</dd>
289
290
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
291
<i class="icon iconfont spcigar-shuangjiantouxia">
292
</i>
293
<a href="/category-32-winston-cigarettes" >
294
Winston</a>
295
</dd>
296
297
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
298
<i class="icon iconfont spcigar-shuangjiantouxia">
299
</i>
300
<a href="/category-34-mevius-cigarettes" >
301
Mevius</a>
302
</dd>
303
304
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
305
<i class="icon iconfont spcigar-shuangjiantouxia">
306
</i>
307
<a href="/category-35-seven-stars-cigarettes" >
308
Seven Stars</a>
309
</dd>
310
311
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
312
<i class="icon iconfont spcigar-shuangjiantouxia">
313
</i>
314
<a href="/category-36-peace-cigarettes" >
315
Peace</a>
316
</dd>
317
318
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
319
<i class="icon iconfont spcigar-shuangjiantouxia">
320
</i>
321
<a href="/category-37-pianissimo-cigarettes" >
322
Pianissimo</a>
323
</dd>
324
325
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
326
<i class="icon iconfont spcigar-shuangjiantouxia">
327
</i>
328
<a href="/category-38-lark-cigarettes" >
329
Lark</a>
330
</dd>
331
332
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
333
<i class="icon iconfont spcigar-shuangjiantouxia">
334
</i>
335
<a href="/category-39-black-devil-cigarettes" >
336
Black Devil</a>
337
</dd>
338
339
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
340
<i class="icon iconfont spcigar-shuangjiantouxia">
341
</i>
342
<a href="/category-40-paramount-cigarettes" >
343
Paramount</a>
344
</dd>
345
346
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
347
<i class="icon iconfont spcigar-shuangjiantouxia">
348
</i>
349
<a href="/category-41-hi-lite-cigarettes" >
350
Hi Lite cigarettes</a>
351
</dd>
352
353
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
354
<i class="icon iconfont spcigar-shuangjiantouxia">
355
</i>
356
<a href="/category-42-555-cigarettes" >
357
555</a>
358
</dd>
359
360
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
361
<i class="icon iconfont spcigar-shuangjiantouxia">
362
</i>
363
<a href="/category-43-regal-cigarettes" >
364
Regal</a>
365
</dd>
366
367
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
368
<i class="icon iconfont spcigar-shuangjiantouxia">
369
</i>
370
<a href="/category-44-richmond-cigarettes" >
371
Richmond</a>
372
</dd>
373
374
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
375
<i class="icon iconfont spcigar-shuangjiantouxia">
376
</i>
377
<a href="/category-45-royals-cigarettes" >
378
Royals</a>
379
</dd>
380
381
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
382
<i class="icon iconfont spcigar-shuangjiantouxia">
383
</i>
384
<a href="/category-46-berkeley-cigarettes" >
385
Berkeley</a>
386
</dd>
387
388
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
389
<i class="icon iconfont spcigar-shuangjiantouxia">
390
</i>
391
<a href="/category-47-carlton-cigarettes" >
392
Carlton</a>
393
</dd>
394
395
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
396
<i class="icon iconfont spcigar-shuangjiantouxia">
397
</i>
398
<a href="/category-48-embassy-cigarettes" >
399
Embassy</a>
400
</dd>
401
402
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
403
<i class="icon iconfont spcigar-shuangjiantouxia">
404
</i>
405
<a href="/category-49-jps-cigarettes" >
406
Jps</a>
407
</dd>
408
409
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
410
<i class="icon iconfont spcigar-shuangjiantouxia">
411
</i>
412
<a href="/category-50-mayfair-cigarettes" >
413
Mayfair</a>
414
</dd>
415
416
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
417
<i class="icon iconfont spcigar-shuangjiantouxia">
418
</i>
419
<a href="/category-51-players-cigarettes" >
420
Players</a>
421
</dd>
422
423
424
</dl>
425
426
</li>
427
428
429
<li class="menuItem menulist">
430
431
Clickable controls should have an ARIA role.
<a class='menuTitle'>Cigar<span class='menu-more'>+</span></a>
Controls that respond to clicks should be given an ARIA role such as role=button
or role=link
.
div
span
and a
elements without an href
attribute have no semantic role.
Clickable controls should be keyboard accessible.
<a class='menuTitle'>Cigar<span class='menu-more'>+</span></a>
Add tabindex=0
to allow keyboard users to tab to the control.
<a class="menuTitle">
432
Cigar<span class="menu-more">
433
+</span>
434
</a>
435
436
<dl class="subMenu menu-hide menu-down">
437
438
<span>
439
</span>
440
441
442
<dt class="t4 agency">
443
Cigars of The World</dt>
444
445
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
446
<i class="icon iconfont spcigar-shuangjiantouxia">
447
</i>
448
<a href="/category-59-partagas-cigars" >
449
Partagass</a>
450
</dd>
451
452
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
453
<i class="icon iconfont spcigar-shuangjiantouxia">
454
</i>
455
<a href="/category-60-j-fernandez-cigars" >
456
A.J. Fernandezs</a>
457
</dd>
458
459
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
460
<i class="icon iconfont spcigar-shuangjiantouxia">
461
</i>
462
<a href="/category-61-adventura-cigars" >
463
ADVenturas</a>
464
</dd>
465
466
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
467
<i class="icon iconfont spcigar-shuangjiantouxia">
468
</i>
469
<a href="/category-62-agio-meharis-cigars" >
470
Agio Mehariss</a>
471
</dd>
472
473
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
474
<i class="icon iconfont spcigar-shuangjiantouxia">
475
</i>
476
<a href="/category-63-al-capone-mini-cigarillos" >
477
Al Capone Miniillos</a>
478
</dd>
479
480
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
481
<i class="icon iconfont spcigar-shuangjiantouxia">
482
</i>
483
<a href="/category-64-alec-bradley-cigars" >
484
Alec Bradleys</a>
485
</dd>
486
487
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
488
<i class="icon iconfont spcigar-shuangjiantouxia">
489
</i>
490
<a href="/category-65-award-winning-cigars" >
491
Award Winnings</a>
492
</dd>
493
494
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
495
<i class="icon iconfont spcigar-shuangjiantouxia">
496
</i>
497
<a href="/category-66-backwoods-cigars" >
498
Backwoodss</a>
499
</dd>
500
501
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
502
<i class="icon iconfont spcigar-shuangjiantouxia">
503
</i>
504
<a href="/category-67-bolivar-cigars" >
505
Bolivars</a>
506
</dd>
507
508
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
509
<i class="icon iconfont spcigar-shuangjiantouxia">
510
</i>
511
<a href="/category-68-boxes-cigars" >
512
Boxes ofs</a>
513
</dd>
514
515
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
516
<i class="icon iconfont spcigar-shuangjiantouxia">
517
</i>
518
<a href="/category-69-camacho-cigars-uk" >
519
Camachos UK</a>
520
</dd>
521
522
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
523
<i class="icon iconfont spcigar-shuangjiantouxia">
524
</i>
525
<a href="/category-70-cao-cigars" >
526
CAOs</a>
527
</dd>
528
529
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
530
<i class="icon iconfont spcigar-shuangjiantouxia">
531
</i>
532
<a href="/category-71-casa-del-habanos-exclusive-cigars" >
533
Casa Del Habanos Exclusives</a>
534
</dd>
535
536
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
537
<i class="icon iconfont spcigar-shuangjiantouxia">
538
</i>
539
<a href="/category-72-casdagli-cigars" >
540
Casdaglis</a>
541
</dd>
542
543
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
544
<i class="icon iconfont spcigar-shuangjiantouxia">
545
</i>
546
<a href="/category-73-castella-cigars" >
547
Castellas</a>
548
</dd>
549
550
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
551
<i class="icon iconfont spcigar-shuangjiantouxia">
552
</i>
553
<a href="/category-74-cavalier-cigars" >
554
Cavaliers</a>
555
</dd>
556
557
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
558
<i class="icon iconfont spcigar-shuangjiantouxia">
559
</i>
560
<a href="/category-76-cigar-aficionado-top-25-cigars" >
561
Cigar Aficionado Top 25s</a>
562
</dd>
563
564
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
565
<i class="icon iconfont spcigar-shuangjiantouxia">
566
</i>
567
<a href="/category-77-cigar-dojo-top-25-cigars" >
568
Cigar Dojo Top 25s</a>
569
</dd>
570
571
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
572
<i class="icon iconfont spcigar-shuangjiantouxia">
573
</i>
574
<a href="/category-78-cigar-journal-top-25-cigars" >
575
Cigar Journal Top 25s</a>
576
</dd>
577
578
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
579
<i class="icon iconfont spcigar-shuangjiantouxia">
580
</i>
581
<a href="/category-79-cigar-month" >
582
Cigar of the Month</a>
583
</dd>
584
585
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
586
<i class="icon iconfont spcigar-shuangjiantouxia">
587
</i>
588
<a href="/category-81-cigarillos-mini-cigars" >
589
Cigarillos
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
&Mini
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
s</a>
590
</dd>
591
592
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
593
<i class="icon iconfont spcigar-shuangjiantouxia">
594
</i>
595
<a href="/category-85-cohiba-behike-cigars" >
596
Cohiba Behikes</a>
597
</dd>
598
599
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
600
<i class="icon iconfont spcigar-shuangjiantouxia">
601
</i>
602
<a href="/category-86-cohiba-cigars" >
603
Cohibas</a>
604
</dd>
605
606
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
607
<i class="icon iconfont spcigar-shuangjiantouxia">
608
</i>
609
<a href="/category-87-costa-rican-cigars" >
610
Costa Ricans</a>
611
</dd>
612
613
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
614
<i class="icon iconfont spcigar-shuangjiantouxia">
615
</i>
616
<a href="/category-88-cuaba-cigars" >
617
Cuabas</a>
618
</dd>
619
620
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
621
<i class="icon iconfont spcigar-shuangjiantouxia">
622
</i>
623
<a href="/category-90-cuban-cigars" >
624
Cubans</a>
625
</dd>
626
627
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
628
<i class="icon iconfont spcigar-shuangjiantouxia">
629
</i>
630
<a href="/category-91-cuban-limited-edition-cigars" >
631
Cuban Limited Editions</a>
632
</dd>
633
634
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
635
<i class="icon iconfont spcigar-shuangjiantouxia">
636
</i>
637
<a href="/category-92-cuban-mini-cigars" >
638
Cuban Minis</a>
639
</dd>
640
641
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
642
<i class="icon iconfont spcigar-shuangjiantouxia">
643
</i>
644
<a href="/category-93-cuban-regional-edition-cigars" >
645
Cuban Regional Editions</a>
646
</dd>
647
648
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
649
<i class="icon iconfont spcigar-shuangjiantouxia">
650
</i>
651
<a href="/category-94-cusano-cigars" >
652
Cusanos</a>
653
</dd>
654
655
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
656
<i class="icon iconfont spcigar-shuangjiantouxia">
657
</i>
658
<a href="/category-95-daniel-marshall-cigars" >
659
Daniel Marshalls</a>
660
</dd>
661
662
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
663
<i class="icon iconfont spcigar-shuangjiantouxia">
664
</i>
665
<a href="/category-96-davidoff-cigarillos" >
666
Davidoffillos</a>
667
</dd>
668
669
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
670
<i class="icon iconfont spcigar-shuangjiantouxia">
671
</i>
672
<a href="/category-97-davidoff-cigars" >
673
Davidoffs</a>
674
</dd>
675
676
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
677
<i class="icon iconfont spcigar-shuangjiantouxia">
678
</i>
679
<a href="/category-98-davidoff-core-range-cigars" >
680
Davidoff Core Ranges</a>
681
</dd>
682
683
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
684
<i class="icon iconfont spcigar-shuangjiantouxia">
685
</i>
686
<a href="/category-99-davidoff-discovery-range-cigars" >
687
Davidoff Discovery Ranges</a>
688
</dd>
689
690
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
691
<i class="icon iconfont spcigar-shuangjiantouxia">
692
</i>
693
<a href="/category-100-davidoff-limited-edition-cigars" >
694
Davidoff Limited Editions</a>
695
</dd>
696
697
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
698
<i class="icon iconfont spcigar-shuangjiantouxia">
699
</i>
700
<a href="/category-102-davidoff-winston-churchill-cigars" >
701
Davidoff Winston Churchills</a>
702
</dd>
703
704
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
705
<i class="icon iconfont spcigar-shuangjiantouxia">
706
</i>
707
<a href="/category-103-de-olifant-cigars" >
708
De Olifants</a>
709
</dd>
710
711
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
712
<i class="icon iconfont spcigar-shuangjiantouxia">
713
</i>
714
<a href="/category-104-diplomaticos-cigars" >
715
Diplomaticoss</a>
716
</dd>
717
718
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
719
<i class="icon iconfont spcigar-shuangjiantouxia">
720
</i>
721
<a href="/category-105-dominican-cigars" >
722
Dominicans</a>
723
</dd>
724
725
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
726
<i class="icon iconfont spcigar-shuangjiantouxia">
727
</i>
728
<a href="/category-106-drew-estate-cigars" >
729
Drew Estates</a>
730
</dd>
731
732
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
733
<i class="icon iconfont spcigar-shuangjiantouxia">
734
</i>
735
<a href="/category-107-el-rey-del-mundo-cigars" >
736
El Rey Del Mundos</a>
737
</dd>
738
739
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
740
<i class="icon iconfont spcigar-shuangjiantouxia">
741
</i>
742
<a href="/category-108-el-septimo-cigars" >
743
El Septimos</a>
744
</dd>
745
746
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
747
<i class="icon iconfont spcigar-shuangjiantouxia">
748
</i>
749
<a href="/category-109-empty-cigar-boxes" >
750
Empty Boxes</a>
751
</dd>
752
753
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
754
<i class="icon iconfont spcigar-shuangjiantouxia">
755
</i>
756
<a href="/category-110-flavoured-cigars" >
757
Flavoureds</a>
758
</dd>
759
760
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
761
<i class="icon iconfont spcigar-shuangjiantouxia">
762
</i>
763
<a href="/category-111-fonseca-cigars" >
764
Fonsecas</a>
765
</dd>
766
767
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
768
<i class="icon iconfont spcigar-shuangjiantouxia">
769
</i>
770
<a href="/category-112-foundation-cigars" >
771
Foundations</a>
772
</dd>
773
774
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
775
<i class="icon iconfont spcigar-shuangjiantouxia">
776
</i>
777
<a href="/category-113-freud-cigars" >
778
Freuds</a>
779
</dd>
780
781
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
782
<i class="icon iconfont spcigar-shuangjiantouxia">
783
</i>
784
<a href="/category-114-great-value-cigars" >
785
Great Values</a>
786
</dd>
787
788
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
789
<i class="icon iconfont spcigar-shuangjiantouxia">
790
</i>
791
<a href="/category-115-guantanamera-cigars" >
792
Guantanameras</a>
793
</dd>
794
795
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
796
<i class="icon iconfont spcigar-shuangjiantouxia">
797
</i>
798
<a href="/category-116-gurkha-cigars" >
799
Gurkhas</a>
800
</dd>
801
802
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
803
<i class="icon iconfont spcigar-shuangjiantouxia">
804
</i>
805
<a href="/category-117-h-upmann-cigars" >
806
H. Upmanns</a>
807
</dd>
808
809
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
810
<i class="icon iconfont spcigar-shuangjiantouxia">
811
</i>
812
<a href="/category-118-half-wheel-top-25-cigars" >
813
Half Wheel Top 25s</a>
814
</dd>
815
816
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
817
<i class="icon iconfont spcigar-shuangjiantouxia">
818
</i>
819
<a href="/category-119-hamlet-cigars" >
820
Hamlets</a>
821
</dd>
822
823
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
824
<i class="icon iconfont spcigar-shuangjiantouxia">
825
</i>
826
<a href="/category-120-havana-house-exclusive-cigars" >
827
Havana House Exclusives</a>
828
</dd>
829
830
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
831
<i class="icon iconfont spcigar-shuangjiantouxia">
832
</i>
833
<a href="/category-121-havana-house-top-10-cigars" >
834
Havana House Top 10s</a>
835
</dd>
836
837
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
838
<i class="icon iconfont spcigar-shuangjiantouxia">
839
</i>
840
<a href="/category-122-henri-wintermans-cigars" >
841
Henri Wintermanss</a>
842
</dd>
843
844
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
845
<i class="icon iconfont spcigar-shuangjiantouxia">
846
</i>
847
<a href="/category-124-honduran-cigars" >
848
Hondurans</a>
849
</dd>
850
851
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
852
<i class="icon iconfont spcigar-shuangjiantouxia">
853
</i>
854
<a href="/category-125-hoyo-de-monterrey-cigars" >
855
Hoyo de Monterreys</a>
856
</dd>
857
858
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
859
<i class="icon iconfont spcigar-shuangjiantouxia">
860
</i>
861
<a href="/category-126-illusione-cigars" >
862
Illusiones</a>
863
</dd>
864
865
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
866
<i class="icon iconfont spcigar-shuangjiantouxia">
867
</i>
868
<a href="/category-127-italico-cigars" >
869
Italicos</a>
870
</dd>
871
872
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
873
<i class="icon iconfont spcigar-shuangjiantouxia">
874
</i>
875
<a href="/category-128-j-cortes-cigars" >
876
J Cortess</a>
877
</dd>
878
879
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
880
<i class="icon iconfont spcigar-shuangjiantouxia">
881
</i>
882
<a href="/category-129-jas-sum-kral-cigars" >
883
Jas Sum Krals</a>
884
</dd>
885
886
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
887
<i class="icon iconfont spcigar-shuangjiantouxia">
888
</i>
889
<a href="/category-130-jose-l-piedra-cigars" >
890
Jose L. Piedras</a>
891
</dd>
892
893
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
894
<i class="icon iconfont spcigar-shuangjiantouxia">
895
</i>
896
<a href="/category-131-joya-de-nicaragua-cigars" >
897
Joya De Nicaraguas</a>
898
</dd>
899
900
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
901
<i class="icon iconfont spcigar-shuangjiantouxia">
902
</i>
903
<a href="/category-132-juan-lopez-cigars" >
904
Juan Lopezs</a>
905
</dd>
906
907
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
908
<i class="icon iconfont spcigar-shuangjiantouxia">
909
</i>
910
<a href="/category-133-juliany-cigars" >
911
Julianys</a>
912
</dd>
913
914
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
915
<i class="icon iconfont spcigar-shuangjiantouxia">
916
</i>
917
<a href="/category-134-king-edward-cigars" >
918
King Edwards</a>
919
</dd>
920
921
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
922
<i class="icon iconfont spcigar-shuangjiantouxia">
923
</i>
924
<a href="/category-135-kristoff-cigars" >
925
Kristoffs</a>
926
</dd>
927
928
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
929
<i class="icon iconfont spcigar-shuangjiantouxia">
930
</i>
931
<a href="/category-136-la-aurora-cigars" >
932
La Auroras</a>
933
</dd>
934
935
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
936
<i class="icon iconfont spcigar-shuangjiantouxia">
937
</i>
938
<a href="/category-137-la-flor-dominicana-cigars" >
939
La Flor Dominicanas</a>
940
</dd>
941
942
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
943
<i class="icon iconfont spcigar-shuangjiantouxia">
944
</i>
945
<a href="/category-138-la-galera-cigars" >
946
La Galeras</a>
947
</dd>
948
949
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
950
<i class="icon iconfont spcigar-shuangjiantouxia">
951
</i>
952
<a href="/category-140-la-invicta-cigars" >
953
La Invictas</a>
954
</dd>
955
956
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
957
<i class="icon iconfont spcigar-shuangjiantouxia">
958
</i>
959
<a href="/category-141-la-paz-cigars" >
960
La Pazs</a>
961
</dd>
962
963
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
964
<i class="icon iconfont spcigar-shuangjiantouxia">
965
</i>
966
<a href="/category-143-mexican-cigars" >
967
Mexicans</a>
968
</dd>
969
970
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
971
<i class="icon iconfont spcigar-shuangjiantouxia">
972
</i>
973
<a href="/category-144-montecristo-cigars" >
974
Montecristos</a>
975
</dd>
976
977
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
978
<i class="icon iconfont spcigar-shuangjiantouxia">
979
</i>
980
<a href="/category-145-my-father-cigars" >
981
My Fathers</a>
982
</dd>
983
984
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
985
<i class="icon iconfont spcigar-shuangjiantouxia">
986
</i>
987
<a href="/category-146-neos-country-cigars" >
988
Neos Countrys</a>
989
</dd>
990
991
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
992
<i class="icon iconfont spcigar-shuangjiantouxia">
993
</i>
994
<a href="/category-147-neos-flavoured-cigars" >
995
Neos Flavoureds</a>
996
</dd>
997
998
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
999
<i class="icon iconfont spcigar-shuangjiantouxia">
1000
</i>
1001
<a href="/category-148-nicaraguan-cigars" >
1002
Nicaraguans</a>
1003
</dd>
1004
1005
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1006
<i class="icon iconfont spcigar-shuangjiantouxia">
1007
</i>
1008
<a href="/category-149-nub-cigars-uk" >
1009
NUBs UK</a>
1010
</dd>
1011
1012
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1013
<i class="icon iconfont spcigar-shuangjiantouxia">
1014
</i>
1015
<a href="/category-150-oliva-cigars" >
1016
Olivas</a>
1017
</dd>
1018
1019
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1020
<i class="icon iconfont spcigar-shuangjiantouxia">
1021
</i>
1022
<a href="/category-151-oscar-valladares-cigars" >
1023
Oscar Valladaress</a>
1024
</dd>
1025
1026
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1027
<i class="icon iconfont spcigar-shuangjiantouxia">
1028
</i>
1029
<a href="/category-152-padron-cigars" >
1030
Padrons</a>
1031
</dd>
1032
1033
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1034
<i class="icon iconfont spcigar-shuangjiantouxia">
1035
</i>
1036
<a href="/category-153-plasencia-cigars-uk" >
1037
Plasencias UK</a>
1038
</dd>
1039
1040
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1041
<i class="icon iconfont spcigar-shuangjiantouxia">
1042
</i>
1043
<a href="/category-154-por-larrañaga-cigars" >
1044
Por Larrañagas</a>
1045
</dd>
1046
1047
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1048
<i class="icon iconfont spcigar-shuangjiantouxia">
1049
</i>
1050
<a href="/category-155-punch-cigars" >
1051
Punchs</a>
1052
</dd>
1053
1054
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1055
<i class="icon iconfont spcigar-shuangjiantouxia">
1056
</i>
1057
<a href="/category-156-quai-d-orsay-cigars" >
1058
Quai D'Orsays</a>
1059
</dd>
1060
1061
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1062
<i class="icon iconfont spcigar-shuangjiantouxia">
1063
</i>
1064
<a href="/category-157-quintero-cigars" >
1065
Quinteros</a>
1066
</dd>
1067
1068
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1069
<i class="icon iconfont spcigar-shuangjiantouxia">
1070
</i>
1071
<a href="/category-158-quorum-cigars" >
1072
Quorums</a>
1073
</dd>
1074
1075
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1076
<i class="icon iconfont spcigar-shuangjiantouxia">
1077
</i>
1078
<a href="/category-159-rafael-gonzalez-cigars" >
1079
Rafael Gonzalezs</a>
1080
</dd>
1081
1082
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1083
<i class="icon iconfont spcigar-shuangjiantouxia">
1084
</i>
1085
<a href="/category-160-ramon-allones-cigars" >
1086
Ramon Alloness</a>
1087
</dd>
1088
1089
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1090
<i class="icon iconfont spcigar-shuangjiantouxia">
1091
</i>
1092
<a href="/category-161-rare-aged-vintage-cigars" >
1093
Rare, Aged
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
&Vintage
Reference not terminated by REFC delimiter.
Line 1093 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
s</a>
1094
</dd>
1095
1096
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1097
<i class="icon iconfont spcigar-shuangjiantouxia">
1098
</i>
1099
<a href="/category-162-robert-caldwell-cigars-co" >
1100
Robert Caldwells Co.</a>
1101
</dd>
1102
1103
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1104
<i class="icon iconfont spcigar-shuangjiantouxia">
1105
</i>
1106
<a href="/category-163-rocky-patel-cigars" >
1107
Rocky Patels</a>
1108
</dd>
1109
1110
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1111
<i class="icon iconfont spcigar-shuangjiantouxia">
1112
</i>
1113
<a href="/category-164-roma-craft-cigars" >
1114
RoMa Crafts</a>
1115
</dd>
1116
1117
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1118
<i class="icon iconfont spcigar-shuangjiantouxia">
1119
</i>
1120
<a href="/category-165-romeo-y-julieta-cigars" >
1121
Romeo y Julietas</a>
1122
</dd>
1123
1124
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1125
<i class="icon iconfont spcigar-shuangjiantouxia">
1126
</i>
1127
<a href="/category-166-room-101-cigars" >
1128
Room 101s</a>
1129
</dd>
1130
1131
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1132
<i class="icon iconfont spcigar-shuangjiantouxia">
1133
</i>
1134
<a href="/category-167-royal-dutch-cigars" >
1135
Royal Dutchs</a>
1136
</dd>
1137
1138
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1139
<i class="icon iconfont spcigar-shuangjiantouxia">
1140
</i>
1141
<a href="/category-168-san-cristobal-cigars" >
1142
San Cristobals</a>
1143
</dd>
1144
1145
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1146
<i class="icon iconfont spcigar-shuangjiantouxia">
1147
</i>
1148
<a href="/category-169-sancho-panza-cigars" >
1149
Sancho Panzas</a>
1150
</dd>
1151
1152
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1153
<i class="icon iconfont spcigar-shuangjiantouxia">
1154
</i>
1155
<a href="/category-170-signature-cafe-creme-cigars" >
1156
Signature (Cafe Creme)s</a>
1157
</dd>
1158
1159
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1160
<i class="icon iconfont spcigar-shuangjiantouxia">
1161
</i>
1162
<a href="/category-171-silencio-cigars" >
1163
Silencios</a>
1164
</dd>
1165
1166
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1167
<i class="icon iconfont spcigar-shuangjiantouxia">
1168
</i>
1169
<a href="/category-173-tatuaje-cigars" >
1170
Tatuajes</a>
1171
</dd>
1172
1173
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1174
<i class="icon iconfont spcigar-shuangjiantouxia">
1175
</i>
1176
<a href="/category-174-te-amo-cigars" >
1177
Te-Amos</a>
1178
</dd>
1179
1180
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1181
<i class="icon iconfont spcigar-shuangjiantouxia">
1182
</i>
1183
<a href="/category-175-trinidad-cigars" >
1184
Trinidads</a>
1185
</dd>
1186
1187
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1188
<i class="icon iconfont spcigar-shuangjiantouxia">
1189
</i>
1190
<a href="/category-176-vasco-da-gama-flavoured-cigars" >
1191
Vasco Da Gama Flavoureds</a>
1192
</dd>
1193
1194
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1195
<i class="icon iconfont spcigar-shuangjiantouxia">
1196
</i>
1197
<a href="/category-177-vegafina-cigars" >
1198
VegaFinas</a>
1199
</dd>
1200
1201
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1202
<i class="icon iconfont spcigar-shuangjiantouxia">
1203
</i>
1204
<a href="/category-178-vegas-robaina-cigars" >
1205
Vegas Robainas</a>
1206
</dd>
1207
1208
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1209
<i class="icon iconfont spcigar-shuangjiantouxia">
1210
</i>
1211
<a href="/category-179-vegueros-cigars" >
1212
Vegueross</a>
1213
</dd>
1214
1215
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1216
<i class="icon iconfont spcigar-shuangjiantouxia">
1217
</i>
1218
<a href="/category-180-villiger-cigars" >
1219
Villigers</a>
1220
</dd>
1221
1222
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1223
<i class="icon iconfont spcigar-shuangjiantouxia">
1224
</i>
1225
<a href="/category-181-wedding-cigars" >
1226
Weddings</a>
1227
</dd>
1228
1229
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1230
<i class="icon iconfont spcigar-shuangjiantouxia">
1231
</i>
1232
<a href="/category-183-willem-ii-cigars" >
1233
Willem IIs</a>
1234
</dd>
1235
1236
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1237
<i class="icon iconfont spcigar-shuangjiantouxia">
1238
</i>
1239
<a href="/category-184-zino-cigarillos" >
1240
Zinoillos</a>
1241
</dd>
1242
1243
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1244
<i class="icon iconfont spcigar-shuangjiantouxia">
1245
</i>
1246
<a href="/category-188-boxes-10-cigars" >
1247
Boxes of 10s</a>
1248
</dd>
1249
1250
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1251
<i class="icon iconfont spcigar-shuangjiantouxia">
1252
</i>
1253
<a href="/category-197-hiram-solomon-cigars" >
1254
Hiram
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
&Solomon
Reference not terminated by REFC delimiter.
Line 1254 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
s</a>
1255
</dd>
1256
1257
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1258
<i class="icon iconfont spcigar-shuangjiantouxia">
1259
</i>
1260
<a href="/category-198-karen-berger-cigars" >
1261
Karen Bergers</a>
1262
</dd>
1263
1264
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1265
<i class="icon iconfont spcigar-shuangjiantouxia">
1266
</i>
1267
<a href="/category-199-la-flor-de-cano-cigars" >
1268
La Flor de Canos</a>
1269
</dd>
1270
1271
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1272
<i class="icon iconfont spcigar-shuangjiantouxia">
1273
</i>
1274
<a href="/category-202-machine-made-cigars" >
1275
Machine Mades</a>
1276
</dd>
1277
1278
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1279
<i class="icon iconfont spcigar-shuangjiantouxia">
1280
</i>
1281
<a href="/category-207-pdr-cigars" >
1282
PDRs</a>
1283
</dd>
1284
1285
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1286
<i class="icon iconfont spcigar-shuangjiantouxia">
1287
</i>
1288
<a href="/category-208-psyko-seven-cigars" >
1289
PSyKO Sevens</a>
1290
</dd>
1291
1292
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1293
<i class="icon iconfont spcigar-shuangjiantouxia">
1294
</i>
1295
<a href="/category-214-start-your-cigar-journey" >
1296
Start Your Journey</a>
1297
</dd>
1298
1299
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1300
<i class="icon iconfont spcigar-shuangjiantouxia">
1301
</i>
1302
<a href="/category-215-sterling-dual-cigarillos" >
1303
Sterling Dualillos</a>
1304
</dd>
1305
1306
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1307
<i class="icon iconfont spcigar-shuangjiantouxia">
1308
</i>
1309
<a href="/category-218-tubed-cigars" >
1310
Tubeds</a>
1311
</dd>
1312
1313
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1314
<i class="icon iconfont spcigar-shuangjiantouxia">
1315
</i>
1316
<a href="/category-221-warped-cigars" >
1317
Warpeds</a>
1318
</dd>
1319
1320
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1321
<i class="icon iconfont spcigar-shuangjiantouxia">
1322
</i>
1323
<a href="/category-223-zino-cigars" >
1324
Zinos</a>
1325
</dd>
1326
1327
1328
</dl>
1329
1330
</li>
1331
1332
1333
<li class="menuItem menulist">
1334
1335
Clickable controls should have an ARIA role.
<a class='menuTitle'>Vape<span class='menu-more'>+</span></a>
Controls that respond to clicks should be given an ARIA role such as role=button
or role=link
.
div
span
and a
elements without an href
attribute have no semantic role.
Clickable controls should be keyboard accessible.
<a class='menuTitle'>Vape<span class='menu-more'>+</span></a>
Add tabindex=0
to allow keyboard users to tab to the control.
<a class="menuTitle">
1336
Vape<span class="menu-more">
1337
+</span>
1338
</a>
1339
1340
<dl class="subMenu menu-hide menu-down">
1341
1342
Document type does not allow element
span
here; missing one of
dt
,
dd
start-tag.
Line 1342 HTML Validation
<span>
1343
</span>
1344
1345
<dt class="t4 agency">
1346
Vape</dt>
1347
1348
1349
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1350
<i class="icon iconfont spcigar-shuangjiantouxia">
1351
</i>
1352
<a href="/category-33-iqos-vape" >
1353
IQOS</a>
1354
</dd>
1355
1356
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1357
<i class="icon iconfont spcigar-shuangjiantouxia">
1358
</i>
1359
<a href="/category-57-relx-vape" >
1360
RELX</a>
1361
</dd>
1362
1363
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1364
<i class="icon iconfont spcigar-shuangjiantouxia">
1365
</i>
1366
<a href="/category-58-juul-vape" >
1367
Juul</a>
1368
</dd>
1369
1370
1371
</dl>
1372
1373
</li>
1374
1375
1376
<li class="menuItem menulist">
1377
1378
Clickable controls should have an ARIA role.
<a class='menuTitle'>Snus<span class='menu-more'>+</span></a>
Controls that respond to clicks should be given an ARIA role such as role=button
or role=link
.
div
span
and a
elements without an href
attribute have no semantic role.
Clickable controls should be keyboard accessible.
<a class='menuTitle'>Snus<span class='menu-more'>+</span></a>
Add tabindex=0
to allow keyboard users to tab to the control.
<a class="menuTitle">
1379
Snus<span class="menu-more">
1380
+</span>
1381
</a>
1382
1383
<dl class="subMenu menu-hide menu-down">
1384
1385
Document type does not allow element
span
here; missing one of
dt
,
dd
start-tag.
Line 1385 HTML Validation
<span>
1386
</span>
1387
1388
<dt class="t4 agency">
1389
Snus</dt>
1390
1391
1392
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1393
<i class="icon iconfont spcigar-shuangjiantouxia">
1394
</i>
1395
<a href="/category-224-ace-snus" >
1396
ACE</a>
1397
</dd>
1398
1399
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1400
<i class="icon iconfont spcigar-shuangjiantouxia">
1401
</i>
1402
<a href="/category-225-buff1up-snus" >
1403
BUFF1UP</a>
1404
</dd>
1405
1406
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1407
<i class="icon iconfont spcigar-shuangjiantouxia">
1408
</i>
1409
<a href="/category-226-chapo-snus" >
1410
Chapo</a>
1411
</dd>
1412
1413
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1414
<i class="icon iconfont spcigar-shuangjiantouxia">
1415
</i>
1416
<a href="/category-227-c-r-e-m-snus" >
1417
C.r.e.a.m</a>
1418
</dd>
1419
1420
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1421
<i class="icon iconfont spcigar-shuangjiantouxia">
1422
</i>
1423
<a href="/category-228-cuba-snus" >
1424
CUBA</a>
1425
</dd>
1426
1427
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1428
<i class="icon iconfont spcigar-shuangjiantouxia">
1429
</i>
1430
<a href="/category-229-garant-snus" >
1431
Garant</a>
1432
</dd>
1433
1434
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1435
<i class="icon iconfont spcigar-shuangjiantouxia">
1436
</i>
1437
<a href="/category-230-glick-snus" >
1438
Glick</a>
1439
</dd>
1440
1441
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1442
<i class="icon iconfont spcigar-shuangjiantouxia">
1443
</i>
1444
<a href="/category-231-helwit-snus" >
1445
Helwit</a>
1446
</dd>
1447
1448
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1449
<i class="icon iconfont spcigar-shuangjiantouxia">
1450
</i>
1451
<a href="/category-232-iceberg-snus" >
1452
ICEBERG</a>
1453
</dd>
1454
1455
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1456
<i class="icon iconfont spcigar-shuangjiantouxia">
1457
</i>
1458
<a href="/category-233-killa-snus" >
1459
Killa</a>
1460
</dd>
1461
1462
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1463
<i class="icon iconfont spcigar-shuangjiantouxia">
1464
</i>
1465
<a href="/category-234-klint-snus" >
1466
KLINT</a>
1467
</dd>
1468
1469
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1470
<i class="icon iconfont spcigar-shuangjiantouxia">
1471
</i>
1472
<a href="/category-235-loop-snus" >
1473
Loop</a>
1474
</dd>
1475
1476
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1477
<i class="icon iconfont spcigar-shuangjiantouxia">
1478
</i>
1479
<a href="/category-236-lundgrens-snus" >
1480
LUNDGRENS</a>
1481
</dd>
1482
1483
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1484
<i class="icon iconfont spcigar-shuangjiantouxia">
1485
</i>
1486
<a href="/category-237-lyft-snus" >
1487
LYFT</a>
1488
</dd>
1489
1490
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1491
<i class="icon iconfont spcigar-shuangjiantouxia">
1492
</i>
1493
<a href="/category-238-nois-snus" >
1494
Nois</a>
1495
</dd>
1496
1497
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1498
<i class="icon iconfont spcigar-shuangjiantouxia">
1499
</i>
1500
<a href="/category-239-snus" >
1501
ON!</a>
1502
</dd>
1503
1504
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1505
<i class="icon iconfont spcigar-shuangjiantouxia">
1506
</i>
1507
<a href="/category-240-pablo-snus" >
1508
Pablo</a>
1509
</dd>
1510
1511
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1512
<i class="icon iconfont spcigar-shuangjiantouxia">
1513
</i>
1514
<a href="/category-241-paz-snus" >
1515
PAZ</a>
1516
</dd>
1517
1518
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1519
<i class="icon iconfont spcigar-shuangjiantouxia">
1520
</i>
1521
<a href="/category-242-rush-snus" >
1522
RUSH</a>
1523
</dd>
1524
1525
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1526
<i class="icon iconfont spcigar-shuangjiantouxia">
1527
</i>
1528
<a href="/category-243-skruf-snus" >
1529
Skruf</a>
1530
</dd>
1531
1532
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1533
<i class="icon iconfont spcigar-shuangjiantouxia">
1534
</i>
1535
<a href="/category-244-smögen-snus" >
1536
Smögen</a>
1537
</dd>
1538
1539
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1540
<i class="icon iconfont spcigar-shuangjiantouxia">
1541
</i>
1542
<a href="/category-245-snowman-snus" >
1543
Snowman</a>
1544
</dd>
1545
1546
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1547
<i class="icon iconfont spcigar-shuangjiantouxia">
1548
</i>
1549
<a href="/category-246-stockholm-white-snus" >
1550
Stockholm White</a>
1551
</dd>
1552
1553
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1554
<i class="icon iconfont spcigar-shuangjiantouxia">
1555
</i>
1556
<a href="/category-247-thor-snus" >
1557
THOR</a>
1558
</dd>
1559
1560
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1561
<i class="icon iconfont spcigar-shuangjiantouxia">
1562
</i>
1563
<a href="/category-248-v-you-snus" >
1564
V
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
&YO
Reference not terminated by REFC delimiter.
Line 1564 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
U</a>
1565
</dd>
1566
1567
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1568
<i class="icon iconfont spcigar-shuangjiantouxia">
1569
</i>
1570
<a href="/category-249-valo-snus" >
1571
Valo</a>
1572
</dd>
1573
1574
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1575
<i class="icon iconfont spcigar-shuangjiantouxia">
1576
</i>
1577
<a href="/category-250-velo-snus" >
1578
VELO</a>
1579
</dd>
1580
1581
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1582
<i class="icon iconfont spcigar-shuangjiantouxia">
1583
</i>
1584
<a href="/category-251-volt-snus" >
1585
Volt</a>
1586
</dd>
1587
1588
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1589
<i class="icon iconfont spcigar-shuangjiantouxia">
1590
</i>
1591
<a href="/category-252-white-fox-snus" >
1592
White Fox</a>
1593
</dd>
1594
1595
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1596
<i class="icon iconfont spcigar-shuangjiantouxia">
1597
</i>
1598
<a href="/category-253-xqs-snus" >
1599
XQS</a>
1600
</dd>
1601
1602
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1603
<i class="icon iconfont spcigar-shuangjiantouxia">
1604
</i>
1605
<a href="/category-254-xr-snus" >
1606
XR</a>
1607
</dd>
1608
1609
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1610
<i class="icon iconfont spcigar-shuangjiantouxia">
1611
</i>
1612
<a href="/category-255-zafari-snus" >
1613
Zafari</a>
1614
</dd>
1615
1616
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1617
<i class="icon iconfont spcigar-shuangjiantouxia">
1618
</i>
1619
<a href="/category-256-zeus-snus" >
1620
Zeus</a>
1621
</dd>
1622
1623
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1624
<i class="icon iconfont spcigar-shuangjiantouxia">
1625
</i>
1626
<a href="/category-257-zonex-snus" >
1627
ZoneX</a>
1628
</dd>
1629
1630
<dd class="col xs-6 sm-6 md-6 lg-6 xl-6">
1631
<i class="icon iconfont spcigar-shuangjiantouxia">
1632
</i>
1633
<a href="/category-258-zyn-snus" >
1634
ZYN</a>
1635
</dd>
1636
1637
1638
</dl>
1639
1640
</li>
1641
1642
</ul>
1643
1644
1645
</nav>
1646
1647
</header>
1648
1649
Element
main
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1650 HTML Validation
1650
<main>
1651
1652
<div class="banner bbrown tc block">
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1653 HTML Validation
1653
<hgroup>
1654
<div class="bt t2 tit1">
1655
Category Info</div>
1656
</hgroup>
1657
1658
<div class="uhere smalltit">
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='/'><i class='icon iconfont ...'></i>Home</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
1659
<a href="/">
1660
<i class="icon iconfont icon-home">
1661
</i>
1662
Home</a>
1663
<span>
1664
/</span>
1665
1666
<span>
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='/brands.html'>Brands Info</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
1667
<a href="/brands.html">
1668
Brands Info</a>
1669
</span>
1670
<span>
1671
/</span>
1672
Details</div>
1673
</div>
1674
1675
1676
<div class="row main block">
1677
1678
<div class="row block">
1679
1680
<div class="t2 brandtit agency">
1681
<h1>
1682
Benson Hedges Cigarettes<!--<i class="icon iconfont spcigar-menu fr">
1683
</i>
1684
-->
1685
</h1>
1686
</div>
1687
1688
<div class="brandbox row">
1689
1690
<div class="fl brandlogo">
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img title='Benson Hedges Cigarettes' src='...g' alt='Benson Hedges Cigarettes'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
1691
<img src="/images/upload/images/2025/20250421/172442_65598.jpg" alt="Benson Hedges Cigarettes" title="Benson Hedges Cigarettes"/>
1692
</div>
1693
1694
<div class="branddesc">
1695
1696
Ensure that text and background colors have a 7:1 contrast ratio.
The text color to background color contrast ratio after composition is:
5.74 with
color: rgb(102,102,102)
background: rgb(255,255,255)
font-size: 10.50pt
font-weight: 400
<p>Benson & Hedges Cigarettes, ... for a subtler smoking experience. </p>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 4.5 or more for 18 point text, or larger
The contrast ratio should be 4.5 or more for 14 point bold text, or larger
The contrast ratio should be 7.0 or more for all other text
Use at least a 12-point font on all web pages.
font-size: 10.50pt
<p>Benson & Hedges Cigarettes, ... for a subtler smoking experience. </p>
For users over age 65, it may be better to use at least fourteen-point fonts.
Never use less than nine-point font on a Web site.
The following are all smaller than 12 point:
<p style="font-size: 11pt;" >
<p style="font-size: 15px;" >
<p style="font-size: small;" >
<font size="2" >
<font size="-1" >
<p>
1697
Benson
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 1697 HTML Validation
& Hedges Cigarettes, established in 1873 by Richard Benson and William Hedges in London, are recognized for their use of high-quality materials and sophisticated packaging. The brand offers multiple variants tailored to diverse preferences. The Gold variant combines Virginia and Burley tobacco leaves for a balanced flavor profile. Silver features air-cured tobaccos to deliver a milder taste, while the Black variant incorporates dark-fired tobaccos for a robust experience. Menthol options include menthol-infused filters, available in formats like 100s and Superkings. Superkings variants provide extended-length cigarettes in Gold, Silver, and Menthol styles. Sky Blue is designed with a lighter tobacco blend for a subtler smoking experience.</p>
1698
Ensure that text and background colors have a 7:1 contrast ratio.
The text color to background color contrast ratio after composition is:
5.74 with
color: rgb(102,102,102)
background: rgb(255,255,255)
font-size: 10.50pt
font-weight: 400
<p>Benson & Hedges Cigarettes ... control during manufacturing. </p>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 4.5 or more for 18 point text, or larger
The contrast ratio should be 4.5 or more for 14 point bold text, or larger
The contrast ratio should be 7.0 or more for all other text
Use at least a 12-point font on all web pages.
font-size: 10.50pt
<p>Benson & Hedges Cigarettes ... control during manufacturing. </p>
For users over age 65, it may be better to use at least fourteen-point fonts.
Never use less than nine-point font on a Web site.
The following are all smaller than 12 point:
<p style="font-size: 11pt;" >
<p style="font-size: 15px;" >
<p style="font-size: small;" >
<font size="2" >
<font size="-1" >
1699
<p>
1700
Benson
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 1700 HTML Validation
& Hedges Cigarettes maintain compliance with regional regulations, though availability in markets like the Philippines may require verification through local retailers. The brand’s packaging adheres to standardized dimensions, with flip-top boxes and foil-lined interiors for freshness. Filters across variants utilize cellulose acetate material, and all products undergo strict quality control during manufacturing.</p>
1701
</div>
1702
1703
</div>
1704
1705
1706
<div class="progrid filtr-container1">
1707
1708
1709
There is no attribute
data-category
.
This happens when the version of HTML used on this page doesn't support an attribute with this name. This can happen
if the attribute is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 attributes and Strict DOCTYPEs don't allow stylistic attributes
which were present in earlier versions of HTML.
Line 1709 HTML Validation
There is no attribute
data-sort
.
This happens when the version of HTML used on this page doesn't support an attribute with this name. This can happen
if the attribute is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 attributes and Strict DOCTYPEs don't allow stylistic attributes
which were present in earlier versions of HTML.
Line 1709 HTML Validation
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1710
1711
<div class="probox">
1712
1713
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Classic Gold Box' href='...x' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
Reference not terminated by REFC delimiter.
Line 1714 HTML Validation
Reference to external entity in attribute value.
Line 1714 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
1714
<a href="/goods-1010-benson-hedges-classic-gold-box" target="_blank" title="Benson &Hedges Classic Gold Box" />
1715
1716
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Classic Gold Box'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
Reference not terminated by REFC delimiter.
Line 1716 HTML Validation
Reference to external entity in attribute value.
Line 1716 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
<img src="/images/upload/images/2025/20250423/150123_16827.jpg" alt="Benson &Hedges Classic Gold Box" />
1717
</a>
1718
</div>
1719
1720
<div class="proinfo">
1721
1722
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1722 HTML Validation
<hgroup>
1723
1724
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Classic Gold Box' href='...x' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Classic Gold Box' href='...x' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
Reference not terminated by REFC delimiter.
Line 1725 HTML Validation
Reference to external entity in attribute value.
Line 1725 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
1725
<a href="/goods-1010-benson-hedges-classic-gold-box" target="_blank" title="Benson &Hedges Classic Gold Box" />
1726
Benson &Hedge
Reference not terminated by REFC delimiter.
Line 1726 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
s Classic Gold Box</
a>
1727
</div>
1728
1729
</hgroup>
1730
1731
<p class="pro-other">
1732
box of 20</p>
1733
1734
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$42.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1735
$42.00</div>
1736
1737
</div>
1738
1739
</div>
1740
1741
</div>
1742
1743
1744
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1745
1746
<div class="probox">
1747
1748
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Red Box' href='...x' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
Reference not terminated by REFC delimiter.
Line 1749 HTML Validation
Reference to external entity in attribute value.
Line 1749 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
1749
<a href="/goods-1011-benson-hedges-red-box" target="_blank" title="Benson &Hedges Red Box" />
1750
1751
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Red Box'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
Reference not terminated by REFC delimiter.
Line 1751 HTML Validation
Reference to external entity in attribute value.
Line 1751 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
<img src="/images/upload/images/2025/20250423/150127_63762.jpg" alt="Benson &Hedges Red Box" />
1752
</a>
1753
</div>
1754
1755
<div class="proinfo">
1756
1757
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1757 HTML Validation
<hgroup>
1758
1759
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Red Box' href='...x' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Red Box' href='...x' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
Reference not terminated by REFC delimiter.
Line 1760 HTML Validation
Reference to external entity in attribute value.
Line 1760 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
1760
<a href="/goods-1011-benson-hedges-red-box" target="_blank" title="Benson &Hedges Red Box" />
1761
Benson &Hedge
Reference not terminated by REFC delimiter.
Line 1761 HTML Validation
An unknown entity has been used. This often happens when ¶m=value is used instead of &param=value in URL query strings.
In HTML the ampersand character (&) is reserved for marking character entities
so you should never use raw ampersands in HTML - including ampersands inside URLs.
Any URL that uses an ampersand should look like:
`file.php?var1=val1&var2=val2`
s Red Box</
a>
1762
</div>
1763
1764
</hgroup>
1765
1766
<p class="pro-other">
1767
box of 20</p>
1768
1769
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$42.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1770
$42.00</div>
1771
1772
</div>
1773
1774
</div>
1775
1776
</div>
1777
1778
1779
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1780
1781
<div class="probox">
1782
1783
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges 100s cigarettes Park Avenue Premium Quality' href='...y' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
1784
<a href="/goods-1240-benson-hedges-100s-cigarettes-park-avenue-premium-quality" target="_blank" title="Benson Hedges 100s cigarettes Park Avenue Premium Quality" />
1785
1786
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges 100s cigarettes Park Avenue Premium Quality'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163159_35646.jpg" alt="Benson Hedges 100s cigarettes Park Avenue Premium Quality" />
1787
</a>
1788
</div>
1789
1790
<div class="proinfo">
1791
1792
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1792 HTML Validation
<hgroup>
1793
1794
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges 100s cigarettes Park Avenue Premium Quality' href='...y' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges 100s cigarettes Park Avenue Premium Quality' href='...y' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
1795
<a href="/goods-1240-benson-hedges-100s-cigarettes-park-avenue-premium-quality" target="_blank" title="Benson Hedges 100s cigarettes Park Avenue Premium Quality" />
1796
Benson Hedges 100s cigarettes Park Avenue Premium Quality</
a>
1797
</div>
1798
1799
</hgroup>
1800
1801
<p class="pro-other">
1802
box of 20</p>
1803
1804
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$28.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1805
$28.00</div>
1806
1807
</div>
1808
1809
</div>
1810
1811
</div>
1812
1813
1814
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1815
1816
<div class="probox">
1817
1818
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Gold cigarettes Italy' href='...y' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
1819
<a href="/goods-1241-benson-hedges-gold-cigarettes-italy" target="_blank" title="Benson Hedges Gold cigarettes Italy" />
1820
1821
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Gold cigarettes Italy'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163205_60407.jpg" alt="Benson Hedges Gold cigarettes Italy" />
1822
</a>
1823
</div>
1824
1825
<div class="proinfo">
1826
1827
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1827 HTML Validation
<hgroup>
1828
1829
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Gold cigarettes Italy' href='...y' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Gold cigarettes Italy' href='...y' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
1830
<a href="/goods-1241-benson-hedges-gold-cigarettes-italy" target="_blank" title="Benson Hedges Gold cigarettes Italy" />
1831
Benson Hedges Gold cigarettes Italy</
a>
1832
</div>
1833
1834
</hgroup>
1835
1836
<p class="pro-other">
1837
box of 20</p>
1838
1839
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$25.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1840
$25.00</div>
1841
1842
</div>
1843
1844
</div>
1845
1846
</div>
1847
1848
1849
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1850
1851
<div class="probox">
1852
1853
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Red Lights cigarettes American Blend Czechia' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
1854
<a href="/goods-1242-benson-hedges-red-lights-cigarettes-american-blend-czechia" target="_blank" title="Benson Hedges Red Lights cigarettes American Blend Czechia" />
1855
1856
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Red Lights cigarettes American Blend Czechia'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163210_44499.jpg" alt="Benson Hedges Red Lights cigarettes American Blend Czechia" />
1857
</a>
1858
</div>
1859
1860
<div class="proinfo">
1861
1862
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1862 HTML Validation
<hgroup>
1863
1864
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Red Lights cigarettes American Blend Czechia' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Red Lights cigarettes American Blend Czechia' href='...a' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
1865
<a href="/goods-1242-benson-hedges-red-lights-cigarettes-american-blend-czechia" target="_blank" title="Benson Hedges Red Lights cigarettes American Blend Czechia" />
1866
Benson Hedges Red Lights cigarettes American Blend Czechia</
a>
1867
</div>
1868
1869
</hgroup>
1870
1871
<p class="pro-other">
1872
box of 20</p>
1873
1874
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$25.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1875
$25.00</div>
1876
1877
</div>
1878
1879
</div>
1880
1881
</div>
1882
1883
1884
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1885
1886
<div class="probox">
1887
1888
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson & Hedges 100s cigarettes Canada Filter Tipped Premium Quality' href='...m' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 1889 HTML Validation
1889
<a href="/goods-1243-benson-hedges-100s-cigarettes-canada-filter-tipped-premium" target="_blank" title="Benson & Hedges 100s cigarettes Canada Filter Tipped Premium Quality" />
1890
1891
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson & Hedges 100s cigarettes Canada Filter Tipped Premium Quality'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 1891 HTML Validation
<img src="/images/upload/images/2025/20250426/163214_66990.jpg" alt="Benson & Hedges 100s cigarettes Canada Filter Tipped Premium Quality" />
1892
</a>
1893
</div>
1894
1895
<div class="proinfo">
1896
1897
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1897 HTML Validation
<hgroup>
1898
1899
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson & Hedges 100s cigarettes Canada Filter Tipped Premium Quality' href='...m' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson & Hedges 100s cigarettes Canada Filter Tipped Premium Quality' href='...m' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 1900 HTML Validation
1900
<a href="/goods-1243-benson-hedges-100s-cigarettes-canada-filter-tipped-premium" target="_blank" title="Benson & Hedges 100s cigarettes Canada Filter Tipped Premium Quality" />
1901
Benson
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 1901 HTML Validation
& Hedges 100s cigarettes Canada Filter Tipped Premium Quality</
a>
1902
</div>
1903
1904
</hgroup>
1905
1906
<p class="pro-other">
1907
box of 20</p>
1908
1909
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$25.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1910
$25.00</div>
1911
1912
</div>
1913
1914
</div>
1915
1916
</div>
1917
1918
1919
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1920
1921
<div class="probox">
1922
1923
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Silver cigarettes' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
1924
<a href="/goods-1244-benson-hedges-silver-cigarettes" target="_blank" title="Benson Hedges Silver cigarettes" />
1925
1926
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Silver cigarettes'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163219_23502.jpg" alt="Benson Hedges Silver cigarettes" />
1927
</a>
1928
</div>
1929
1930
<div class="proinfo">
1931
1932
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1932 HTML Validation
<hgroup>
1933
1934
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Silver cigarettes' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Silver cigarettes' href='...s' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
1935
<a href="/goods-1244-benson-hedges-silver-cigarettes" target="_blank" title="Benson Hedges Silver cigarettes" />
1936
Benson Hedges Silver cigarettes</
a>
1937
</div>
1938
1939
</hgroup>
1940
1941
<p class="pro-other">
1942
box of 20</p>
1943
1944
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$20.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1945
$20.00</div>
1946
1947
</div>
1948
1949
</div>
1950
1951
</div>
1952
1953
1954
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1955
1956
<div class="probox">
1957
1958
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges 25 cigarettes Special Filter Australia' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
1959
<a href="/goods-1245-benson-hedges-25-cigarettes-special-filter-australia" target="_blank" title="Benson Hedges 25 cigarettes Special Filter Australia" />
1960
1961
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges 25 cigarettes Special Filter Australia'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163223_10710.jpg" alt="Benson Hedges 25 cigarettes Special Filter Australia" />
1962
</a>
1963
</div>
1964
1965
<div class="proinfo">
1966
1967
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 1967 HTML Validation
<hgroup>
1968
1969
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges 25 cigarettes Special Filter Australia' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges 25 cigarettes Special Filter Australia' href='...a' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
1970
<a href="/goods-1245-benson-hedges-25-cigarettes-special-filter-australia" target="_blank" title="Benson Hedges 25 cigarettes Special Filter Australia" />
1971
Benson Hedges 25 cigarettes Special Filter Australia</
a>
1972
</div>
1973
1974
</hgroup>
1975
1976
<p class="pro-other">
1977
box of 20</p>
1978
1979
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$25.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
1980
$25.00</div>
1981
1982
</div>
1983
1984
</div>
1985
1986
</div>
1987
1988
1989
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
1990
1991
<div class="probox">
1992
1993
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Lights cigarette gold India' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
1994
<a href="/goods-1246-benson-hedges-lights-cigarette-gold-india" target="_blank" title="Benson Hedges Lights cigarette gold India" />
1995
1996
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Lights cigarette gold India'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250428/100415_13174.jpg" alt="Benson Hedges Lights cigarette gold India" />
1997
</a>
1998
</div>
1999
2000
<div class="proinfo">
2001
2002
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2002 HTML Validation
<hgroup>
2003
2004
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Lights cigarette gold India' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Lights cigarette gold India' href='...a' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2005
<a href="/goods-1246-benson-hedges-lights-cigarette-gold-india" target="_blank" title="Benson Hedges Lights cigarette gold India" />
2006
Benson Hedges Lights cigarette gold India</
a>
2007
</div>
2008
2009
</hgroup>
2010
2011
<p class="pro-other">
2012
box of 20</p>
2013
2014
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$21.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2015
$21.00</div>
2016
2017
</div>
2018
2019
</div>
2020
2021
</div>
2022
2023
2024
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2025
2026
<div class="probox">
2027
2028
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson & Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality' href='...d' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2029 HTML Validation
2029
<a href="/goods-1247-benson-hedges-ultra-mild-100s-cigarettes-ltra-mild" target="_blank" title="Benson & Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality" />
2030
2031
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson & Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2031 HTML Validation
<img src="/images/upload/images/2025/20250426/163246_93558.jpg" alt="Benson & Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality" />
2032
</a>
2033
</div>
2034
2035
<div class="proinfo">
2036
2037
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2037 HTML Validation
<hgroup>
2038
2039
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson & Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality' href='...d' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson & Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality' href='...d' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2040 HTML Validation
2040
<a href="/goods-1247-benson-hedges-ultra-mild-100s-cigarettes-ltra-mild" target="_blank" title="Benson & Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality" />
2041
Benson
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2041 HTML Validation
& Hedges Ultra Mild 100s cigarettes ltra Mild Premium Quality</
a>
2042
</div>
2043
2044
</hgroup>
2045
2046
<p class="pro-other">
2047
box of 20</p>
2048
2049
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$25.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2050
$25.00</div>
2051
2052
</div>
2053
2054
</div>
2055
2056
</div>
2057
2058
2059
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2060
2061
<div class="probox">
2062
2063
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges 100s Lights cigarettes Park Avenue' href='...e' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2064
<a href="/goods-1248-benson-hedges-100s-lights-cigarettes-park-avenue" target="_blank" title="Benson Hedges 100s Lights cigarettes Park Avenue" />
2065
2066
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges 100s Lights cigarettes Park Avenue'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163254_84861.jpg" alt="Benson Hedges 100s Lights cigarettes Park Avenue" />
2067
</a>
2068
</div>
2069
2070
<div class="proinfo">
2071
2072
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2072 HTML Validation
<hgroup>
2073
2074
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges 100s Lights cigarettes Park Avenue' href='...e' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges 100s Lights cigarettes Park Avenue' href='...e' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2075
<a href="/goods-1248-benson-hedges-100s-lights-cigarettes-park-avenue" target="_blank" title="Benson Hedges 100s Lights cigarettes Park Avenue" />
2076
Benson Hedges 100s Lights cigarettes Park Avenue</
a>
2077
</div>
2078
2079
</hgroup>
2080
2081
<p class="pro-other">
2082
box of 20</p>
2083
2084
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$28.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2085
$28.00</div>
2086
2087
</div>
2088
2089
</div>
2090
2091
</div>
2092
2093
2094
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2095
2096
<div class="probox">
2097
2098
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Special Filter cigarettes Malaysia' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2099
<a href="/goods-1249-benson-hedges-special-filter-cigarettes-malaysia" target="_blank" title="Benson Hedges Special Filter cigarettes Malaysia" />
2100
2101
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Special Filter cigarettes Malaysia'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163300_30925.jpg" alt="Benson Hedges Special Filter cigarettes Malaysia" />
2102
</a>
2103
</div>
2104
2105
<div class="proinfo">
2106
2107
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2107 HTML Validation
<hgroup>
2108
2109
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Special Filter cigarettes Malaysia' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Special Filter cigarettes Malaysia' href='...a' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2110
<a href="/goods-1249-benson-hedges-special-filter-cigarettes-malaysia" target="_blank" title="Benson Hedges Special Filter cigarettes Malaysia" />
2111
Benson Hedges Special Filter cigarettes Malaysia</
a>
2112
</div>
2113
2114
</hgroup>
2115
2116
<p class="pro-other">
2117
box of 20</p>
2118
2119
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$20.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2120
$20.00</div>
2121
2122
</div>
2123
2124
</div>
2125
2126
</div>
2127
2128
2129
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2130
2131
<div class="probox">
2132
2133
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Menthol Mild cigarettes South Africa' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2134
<a href="/goods-1250-benson-hedges-menthol-mild-cigarettes-south-africa" target="_blank" title="Benson Hedges Menthol Mild cigarettes South Africa" />
2135
2136
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Menthol Mild cigarettes South Africa'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163305_67239.jpg" alt="Benson Hedges Menthol Mild cigarettes South Africa" />
2137
</a>
2138
</div>
2139
2140
<div class="proinfo">
2141
2142
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2142 HTML Validation
<hgroup>
2143
2144
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Menthol Mild cigarettes South Africa' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Menthol Mild cigarettes South Africa' href='...a' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2145
<a href="/goods-1250-benson-hedges-menthol-mild-cigarettes-south-africa" target="_blank" title="Benson Hedges Menthol Mild cigarettes South Africa" />
2146
Benson Hedges Menthol Mild cigarettes South Africa</
a>
2147
</div>
2148
2149
</hgroup>
2150
2151
<p class="pro-other">
2152
box of 20</p>
2153
2154
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$30.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2155
$30.00</div>
2156
2157
</div>
2158
2159
</div>
2160
2161
</div>
2162
2163
2164
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2165
2166
<div class="probox">
2167
2168
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Ultimate Lights cigarettes South Africa' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2169
<a href="/goods-1251-benson-hedges-ultimate-lights-cigarettes-south-africa" target="_blank" title="Benson Hedges Ultimate Lights cigarettes South Africa" />
2170
2171
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Ultimate Lights cigarettes South Africa'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163311_10962.jpg" alt="Benson Hedges Ultimate Lights cigarettes South Africa" />
2172
</a>
2173
</div>
2174
2175
<div class="proinfo">
2176
2177
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2177 HTML Validation
<hgroup>
2178
2179
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Ultimate Lights cigarettes South Africa' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Ultimate Lights cigarettes South Africa' href='...a' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2180
<a href="/goods-1251-benson-hedges-ultimate-lights-cigarettes-south-africa" target="_blank" title="Benson Hedges Ultimate Lights cigarettes South Africa" />
2181
Benson Hedges Ultimate Lights cigarettes South Africa</
a>
2182
</div>
2183
2184
</hgroup>
2185
2186
<p class="pro-other">
2187
box of 20</p>
2188
2189
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$25.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2190
$25.00</div>
2191
2192
</div>
2193
2194
</div>
2195
2196
</div>
2197
2198
2199
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2200
2201
<div class="probox">
2202
2203
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson & Hedges Menthol Lights 100s cigarettes duty-free' href='...e' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2204 HTML Validation
2204
<a href="/goods-1252-benson-hedges-menthol-lights-100s-cigarettes-duty-free" target="_blank" title="Benson & Hedges Menthol Lights 100s cigarettes duty-free" />
2205
2206
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson & Hedges Menthol Lights 100s cigarettes duty-free'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2206 HTML Validation
<img src="/images/upload/images/2025/20250426/163317_98207.jpg" alt="Benson & Hedges Menthol Lights 100s cigarettes duty-free" />
2207
</a>
2208
</div>
2209
2210
<div class="proinfo">
2211
2212
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2212 HTML Validation
<hgroup>
2213
2214
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson & Hedges Menthol Lights 100s cigarettes duty-free' href='...e' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson & Hedges Menthol Lights 100s cigarettes duty-free' href='...e' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2215 HTML Validation
2215
<a href="/goods-1252-benson-hedges-menthol-lights-100s-cigarettes-duty-free" target="_blank" title="Benson & Hedges Menthol Lights 100s cigarettes duty-free" />
2216
Benson
Character
&
is the first character of a delimiter but occurred as data.
This often occurs in text or JavaScript code when a bare angle bracket or ampersand is used instead of an entity reference.
Line 2216 HTML Validation
& Hedges Menthol Lights 100s cigarettes duty-free</
a>
2217
</div>
2218
2219
</hgroup>
2220
2221
<p class="pro-other">
2222
box of 20</p>
2223
2224
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$30.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2225
$30.00</div>
2226
2227
</div>
2228
2229
</div>
2230
2231
</div>
2232
2233
2234
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2235
2236
<div class="probox">
2237
2238
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue' href='...m' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2239
<a href="/goods-1253-benson-hedges-menthol-100s-cigarettes-soft-box-premium" target="_blank" title="Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue" />
2240
2241
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163322_20518.jpg" alt="Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue" />
2242
</a>
2243
</div>
2244
2245
<div class="proinfo">
2246
2247
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2247 HTML Validation
<hgroup>
2248
2249
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue' href='...m' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue' href='...m' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2250
<a href="/goods-1253-benson-hedges-menthol-100s-cigarettes-soft-box-premium" target="_blank" title="Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue" />
2251
Benson Hedges Menthol 100s cigarettes soft box Premium Filter Menthol Park Avenue</
a>
2252
</div>
2253
2254
</hgroup>
2255
2256
<p class="pro-other">
2257
box of 20</p>
2258
2259
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$28.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2260
$28.00</div>
2261
2262
</div>
2263
2264
</div>
2265
2266
</div>
2267
2268
2269
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2270
2271
<div class="probox">
2272
2273
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2274
<a href="/goods-1254-benson-hedges-de-luxe-menthol-ultra-lights-100s" target="_blank" title="Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box" />
2275
2276
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163326_60067.jpg" alt="Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box" />
2277
</a>
2278
</div>
2279
2280
<div class="proinfo">
2281
2282
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2282 HTML Validation
<hgroup>
2283
2284
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box' href='...s' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2285
<a href="/goods-1254-benson-hedges-de-luxe-menthol-ultra-lights-100s" target="_blank" title="Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box" />
2286
Benson Hedges de Luxe Menthol Ultra Lights 100s cigarettes hard box</
a>
2287
</div>
2288
2289
</hgroup>
2290
2291
<p class="pro-other">
2292
box of 20</p>
2293
2294
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$28.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2295
$28.00</div>
2296
2297
</div>
2298
2299
</div>
2300
2301
</div>
2302
2303
2304
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2305
2306
<div class="probox">
2307
2308
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges No.1 30 cigarette South Africa' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2309
<a href="/goods-1255-benson-hedges-no-1-30-cigarette-south-africa" target="_blank" title="Benson Hedges No.1 30 cigarette South Africa" />
2310
2311
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges No.1 30 cigarette South Africa'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163331_44833.jpg" alt="Benson Hedges No.1 30 cigarette South Africa" />
2312
</a>
2313
</div>
2314
2315
<div class="proinfo">
2316
2317
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2317 HTML Validation
<hgroup>
2318
2319
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges No.1 30 cigarette South Africa' href='...a' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges No.1 30 cigarette South Africa' href='...a' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2320
<a href="/goods-1255-benson-hedges-no-1-30-cigarette-south-africa" target="_blank" title="Benson Hedges No.1 30 cigarette South Africa" />
2321
Benson Hedges No.1 30 cigarette South Africa</
a>
2322
</div>
2323
2324
</hgroup>
2325
2326
<p class="pro-other">
2327
box of 20</p>
2328
2329
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$28.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2330
$28.00</div>
2331
2332
</div>
2333
2334
</div>
2335
2336
</div>
2337
2338
2339
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2340
2341
<div class="probox">
2342
2343
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Lights 100s 25 classa cigarettes' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2344
<a href="/goods-1256-benson-hedges-lights-100s-25-classa-cigarettes" target="_blank" title="Benson Hedges Lights 100s 25 classa cigarettes" />
2345
2346
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges Lights 100s 25 classa cigarettes'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163339_66167.jpg" alt="Benson Hedges Lights 100s 25 classa cigarettes" />
2347
</a>
2348
</div>
2349
2350
<div class="proinfo">
2351
2352
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2352 HTML Validation
<hgroup>
2353
2354
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges Lights 100s 25 classa cigarettes' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges Lights 100s 25 classa cigarettes' href='...s' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2355
<a href="/goods-1256-benson-hedges-lights-100s-25-classa-cigarettes" target="_blank" title="Benson Hedges Lights 100s 25 classa cigarettes" />
2356
Benson Hedges Lights 100s 25 classa cigarettes</
a>
2357
</div>
2358
2359
</hgroup>
2360
2361
<p class="pro-other">
2362
box of 20</p>
2363
2364
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$25.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2365
$25.00</div>
2366
2367
</div>
2368
2369
</div>
2370
2371
</div>
2372
2373
2374
<div class="col xs-12 sm-12 md-6 lg-4 xl-3 filtr-item" data-category="4" data-sort="4900.00">
2375
2376
<div class="probox">
2377
2378
<div class="propic">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges XL cigarettes' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
2379
<a href="/goods-1257-benson-hedges-xl-cigarettes" target="_blank" title="Benson Hedges XL cigarettes" />
2380
2381
Omitting
img width
or
height
attributes makes the page layout jump about as images load.
<img src='...g' alt='Benson Hedges XL cigarettes'>
This makes the page very hard to read or click while it's loading.
Fix by adding width and height attributes to the img
tag matching the image dimensions.
In responsive layouts, specifying width
and height
prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
<img src="/images/upload/images/2025/20250426/163343_92347.jpg" alt="Benson Hedges XL cigarettes" />
2382
</a>
2383
</div>
2384
2385
<div class="proinfo">
2386
2387
Element
hgroup
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2387 HTML Validation
<hgroup>
2388
2389
<div class="pro-tit">
Avoid specifying a new window as the target of a link with
target=_blank
.
<a title='Benson Hedges XL cigarettes' href='...s' target='_blank' ></a>
Displaying new windows without warning can be very confusing to non-sighted and mobile users.
Some screen readers and mobile devices give very little indication a new tab or window has opened.
If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text
or add the warning to the link using a title
attribute or aria-describedby
attribute.
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a title='Benson Hedges XL cigarettes' href='...s' target='_blank'></a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2390
<a href="/goods-1257-benson-hedges-xl-cigarettes" target="_blank" title="Benson Hedges XL cigarettes" />
2391
Benson Hedges XL cigarettes</
a>
2392
</div>
2393
2394
</hgroup>
2395
2396
<p class="pro-other">
2397
box of 20</p>
2398
2399
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.13 with
color: rgb(255,90,0)
background: rgb(255,255,255)
font-size: 14.40pt
font-weight: 400
<div class='pro-price agency'>$20.00 </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="pro-price agency">
2400
$20.00</div>
2401
2402
</div>
2403
2404
</div>
2405
2406
</div>
2407
2408
2409
</div>
2410
2411
2412
<div class="pagination">
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
3.98 with
color: rgb(255,255,255)
background: rgb(0,123,255)
font-size: 12pt
font-weight: 400
<span class='current'>1 </span>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
2413
<span class="current">
2414
1</span>
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='...2'>2</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2415
<a href="category-3-benson-hedges-cigarettes?page=2">
2416
2</a>
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='...3'>3</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2417
<a href="category-3-benson-hedges-cigarettes?page=3">
2418
3</a>
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='...4'>4</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2419
<a href="category-3-benson-hedges-cigarettes?page=4">
2420
4</a>
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='...2'>Next</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2421
<a href="category-3-benson-hedges-cigarettes?page=2">
2422
Next</a>
The CSS outline or border style on this element makes it difficult or impossible to see the link focus outline.
:focus
has
outline: invert none 0px
<a href='...4'>Last</a>
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See
:focus-visible for more information.
Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:
Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
Firefox (obscures the focus indicator on links)
2423
<a href="category-3-benson-hedges-cigarettes?page=4">
2424
Last</a>
2425
</div>
2426
2427
2428
2429
2430
</div>
2431
2432
2433
</div>
2434
2435
</main>
2436
2437
Element
footer
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2438 HTML Validation
2438
<footer>
2439
2440
<div class="foot main">
2441
2442
<div class="row block count">
2443
2444
<div class="col xs-12 sm-6 md-6 lg-6 xl-6">
2445
2446
<dl>
2447
2448
<dt>
Document type does not allow element
h6
here; missing one of
object
,
applet
,
map
,
iframe
,
button
,
ins
,
del
start-tag.
Line 2449 HTML Validation
2449
<h6 class="agency">
2450
US</h6>
2451
</dt>
2452
2453
<dd>
2454
<a href="/news-1-about.html">
2455
About Us</a>
2456
</dd>
2457
2458
<dd>
2459
<a href="/news-2-buy.html">
2460
How to buy</a>
2461
</dd>
2462
2463
<dd>
2464
<a href="/news-3-payment.html">
2465
Payment method</a>
2466
</dd>
2467
2468
<dd>
2469
<a href="/news-4-express.html">
2470
Express service</a>
2471
</dd>
2472
2473
<dd>
2474
<a href="/news-5-customer.html">
2475
After-sales service</a>
2476
</dd>
2477
2478
<dd>
2479
<a href="/news-6-privacy.html">
2480
Privacy protection</a>
2481
</dd>
2482
2483
<dd>
2484
<a href="/news-7-legal.html">
2485
Legal poddcy</a>
2486
</dd>
2487
2488
<dd>
2489
<a href="/news-8-use.html">
2490
Membership Agreement</a>
2491
</dd>
2492
2493
<dd>
2494
<a href="/news-9-faq.html">
2495
FAQ</a>
2496
</dd>
2497
2498
</dl>
2499
2500
</div>
2501
2502
</div>
2503
2504
There is no attribute
class
.
This happens when the version of HTML used on this page doesn't support an attribute with this name. This can happen
if the attribute is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 attributes and Strict DOCTYPEs don't allow stylistic attributes
which were present in earlier versions of HTML.
Line 2504 HTML Validation
Element
section
undefined.
This happens when the version of HTML used on this page doesn't support an element with this name. This can happen
if the element is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 elements and strict DOCTYPEs don't allow stylistic elements
and frames which were present in earlier versions of HTML.
Line 2504 HTML Validation
<section class="row">
2505
2506
Ensure that text and background colors have enough contrast.
The text color to background color contrast ratio after composition is:
4.22 with
color: rgb(119,119,119)
background: rgb(17,17,17)
font-size: 13.50pt
font-weight: 400
<div class='t4'>Partner Links </div>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 3.0 or more for 18 point text, or larger
The contrast ratio should be 3.0 or more for 14 point bold text, or larger
The contrast ratio should be 4.5 or more for all other text
<div class="t4">
2507
Partner Links</div>
2508
2509
<div class="linklist">
2510
2511
</div>
2512
2513
</section>
2514
2515
</div>
2516
2517
<div class="footbar row tc">
Ensure that text and background colors have a 7:1 contrast ratio.
The text color to background color contrast ratio after composition is:
6.76 with
color: rgb(153,153,153)
background: rgb(40,0,0)
font-size: 9pt
font-weight: 400
<p>This website contains tobacco ... by people under the age of 18! </p>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 4.5 or more for 18 point text, or larger
The contrast ratio should be 4.5 or more for 14 point bold text, or larger
The contrast ratio should be 7.0 or more for all other text
2518
<p>
2519
This website contains tobacco content and is not allowed to be viewed by people under the age of 18!</p>
Ensure that text and background colors have a 7:1 contrast ratio.
The text color to background color contrast ratio after composition is:
6.76 with
color: rgb(153,153,153)
background: rgb(40,0,0)
font-size: 9pt
font-weight: 400
<p>©copy; 2025 Tobaccove. All rights reserved. </p>
Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
The contrast ratio should be 4.5 or more for 18 point text, or larger
The contrast ratio should be 4.5 or more for 14 point bold text, or larger
The contrast ratio should be 7.0 or more for all other text
2520
<p>
2521
©copy; 2025 Tobaccove. All rights reserved.</p>
2522
2523
2524
2525
</div>
2526
2527
</footer>
2528
2529
<div class="gotop">
2530
2531
<div class="btn" onclick="gotoTop();return false;">
2532
<i class="icon iconfont spcigar-Top">
2533
</i>
2534
</div>
2535
2536
</div>
2537
2538
<script type="text/javascript" src="/themes/ecshop2010/js/jquery.filterizr.min.js">
2539
</script>
2540
2541
<script type="text/javascript" src="/themes/ecshop2010/js/gbcigar.js">
2542
</script>
2543
2544
<div class="count">
2545
<script>
2546
2547
</script>
2548
2549
</div>
2550
2551
2552
</body>
2553
2554
</html>