-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
573 lines (572 loc) · 25.1 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dota 2 heroes demo</title>
<link rel="stylesheet" type="text/css" href="dota-heroes.css" />
</head>
<body>
<table width="100%">
<tr>
<td width="80px"><i class="hero monkeyking"></i></td>
<td width="80px"><i class="hero monkeyking"><span class="type"></span></i></td>
<td><small>hero Monkey King</small></td>
</tr>
<tr>
<td width="80px"><i class="hero abaddon"></i></td>
<td width="80px"><i class="hero abaddon"><span class="type"></span></i></td>
<td><small>hero Abaddon</small></td>
</tr>
<tr>
<td width="80px"><i class="hero alchemist"></i></td>
<td width="80px"><i class="hero alchemist"><span class="type"></span></i></td>
<td><small>hero Alchemist</small></td>
</tr>
<tr>
<td width="80px"><i class="hero ancientapparition"></i></td>
<td width="80px"><i class="hero ancientapparition"><span class="type"></span></i></td>
<td><small>hero Ancient Apparition</small></td>
</tr>
<tr>
<td width="80px"><i class="hero anti-mage"></i></td>
<td width="80px"><i class="hero anti-mage"><span class="type"></span></i></td>
<td><small>hero Anti-Mage</small></td>
</tr>
<tr>
<td width="80px"><i class="hero arcwarden"></i></td>
<td width="80px"><i class="hero arcwarden"><span class="type"></span></i></td>
<td><small>hero Arc Warden</small></td>
</tr>
<tr>
<td width="80px"><i class="hero axe"></i></td>
<td width="80px"><i class="hero axe"><span class="type"></span></i></td>
<td><small>hero Axe</small></td>
</tr>
<tr>
<td width="80px"><i class="hero bane"></i></td>
<td width="80px"><i class="hero bane"><span class="type"></span></i></td>
<td><small>hero Bane</small></td>
</tr>
<tr>
<td width="80px"><i class="hero batrider"></i></td>
<td width="80px"><i class="hero batrider"><span class="type"></span></i></td>
<td><small>hero Batrider</small></td>
</tr>
<tr>
<td width="80px"><i class="hero beastmaster"></i></td>
<td width="80px"><i class="hero beastmaster"><span class="type"></span></i></td>
<td><small>hero Beastmaster</small></td>
</tr>
<tr>
<td width="80px"><i class="hero bloodseeker"></i></td>
<td width="80px"><i class="hero bloodseeker"><span class="type"></span></i></td>
<td><small>hero Bloodseeker</small></td>
</tr>
<tr>
<td width="80px"><i class="hero bountyhunter"></i></td>
<td width="80px"><i class="hero bountyhunter"><span class="type"></span></i></td>
<td><small>hero Bounty Hunter</small></td>
</tr>
<tr>
<td width="80px"><i class="hero brewmaster"></i></td>
<td width="80px"><i class="hero brewmaster"><span class="type"></span></i></td>
<td><small>hero Brewmaster</small></td>
</tr>
<tr>
<td width="80px"><i class="hero bristleback"></i></td>
<td width="80px"><i class="hero bristleback"><span class="type"></span></i></td>
<td><small>hero Bristleback</small></td>
</tr>
<tr>
<td width="80px"><i class="hero broodmother"></i></td>
<td width="80px"><i class="hero broodmother"><span class="type"></span></i></td>
<td><small>hero Broodmother</small></td>
</tr>
<tr>
<td width="80px"><i class="hero centaurwarrunner"></i></td>
<td width="80px"><i class="hero centaurwarrunner"><span class="type"></span></i></td>
<td><small>hero Centaur Warrunner</small></td>
</tr>
<tr>
<td width="80px"><i class="hero chaosknight"></i></td>
<td width="80px"><i class="hero chaosknight"><span class="type"></span></i></td>
<td><small>hero Chaos Knight</small></td>
</tr>
<tr>
<td width="80px"><i class="hero chen"></i></td>
<td width="80px"><i class="hero chen"><span class="type"></span></i></td>
<td><small>hero Chen</small></td>
</tr>
<tr>
<td width="80px"><i class="hero clinkz"></i></td>
<td width="80px"><i class="hero clinkz"><span class="type"></span></i></td>
<td><small>hero Clinkz</small></td>
</tr>
<tr>
<td width="80px"><i class="hero clockwerk"></i></td>
<td width="80px"><i class="hero clockwerk"><span class="type"></span></i></td>
<td><small>hero Clockwerk</small></td>
</tr>
<tr>
<td width="80px"><i class="hero crystalmaiden"></i></td>
<td width="80px"><i class="hero crystalmaiden"><span class="type"></span></i></td>
<td><small>hero Crystal Maiden</small></td>
</tr>
<tr>
<td width="80px"><i class="hero darkseer"></i></td>
<td width="80px"><i class="hero darkseer"><span class="type"></span></i></td>
<td><small>hero Dark Seer</small></td>
</tr>
<tr>
<td width="80px"><i class="hero dazzle"></i></td>
<td width="80px"><i class="hero dazzle"><span class="type"></span></i></td>
<td><small>hero Dazzle</small></td>
</tr>
<tr>
<td width="80px"><i class="hero deathprophet"></i></td>
<td width="80px"><i class="hero deathprophet"><span class="type"></span></i></td>
<td><small>hero Death Prophet</small></td>
</tr>
<tr>
<td width="80px"><i class="hero disruptor"></i></td>
<td width="80px"><i class="hero disruptor"><span class="type"></span></i></td>
<td><small>hero Disruptor</small></td>
</tr>
<tr>
<td width="80px"><i class="hero doom"></i></td>
<td width="80px"><i class="hero doom"><span class="type"></span></i></td>
<td><small>hero Doom</small></td>
</tr>
<tr>
<td width="80px"><i class="hero dragonknight"></i></td>
<td width="80px"><i class="hero dragonknight"><span class="type"></span></i></td>
<td><small>hero Dragon Knight</small></td>
</tr>
<tr>
<td width="80px"><i class="hero drowranger"></i></td>
<td width="80px"><i class="hero drowranger"><span class="type"></span></i></td>
<td><small>hero Drow Ranger</small></td>
</tr>
<tr>
<td width="80px"><i class="hero earthspirit"></i></td>
<td width="80px"><i class="hero earthspirit"><span class="type"></span></i></td>
<td><small>hero Earth Spirit</small></td>
</tr>
<tr>
<td width="80px"><i class="hero earthshaker"></i></td>
<td width="80px"><i class="hero earthshaker"><span class="type"></span></i></td>
<td><small>hero Earthshaker</small></td>
</tr>
<tr>
<td width="80px"><i class="hero eldertitan"></i></td>
<td width="80px"><i class="hero eldertitan"><span class="type"></span></i></td>
<td><small>hero Elder Titan</small></td>
</tr>
<tr>
<td width="80px"><i class="hero emberspirit"></i></td>
<td width="80px"><i class="hero emberspirit"><span class="type"></span></i></td>
<td><small>hero Ember Spirit</small></td>
</tr>
<tr>
<td width="80px"><i class="hero enchantress"></i></td>
<td width="80px"><i class="hero enchantress"><span class="type"></span></i></td>
<td><small>hero Enchantress</small></td>
</tr>
<tr>
<td width="80px"><i class="hero enigma"></i></td>
<td width="80px"><i class="hero enigma"><span class="type"></span></i></td>
<td><small>hero Enigma</small></td>
</tr>
<tr>
<td width="80px"><i class="hero facelessvoid"></i></td>
<td width="80px"><i class="hero facelessvoid"><span class="type"></span></i></td>
<td><small>hero Faceless Void</small></td>
</tr>
<tr>
<td width="80px"><i class="hero gyrocopter"></i></td>
<td width="80px"><i class="hero gyrocopter"><span class="type"></span></i></td>
<td><small>hero Gyrocopter</small></td>
</tr>
<tr>
<td width="80px"><i class="hero huskar"></i></td>
<td width="80px"><i class="hero huskar"><span class="type"></span></i></td>
<td><small>hero Huskar</small></td>
</tr>
<tr>
<td width="80px"><i class="hero invoker"></i></td>
<td width="80px"><i class="hero invoker"><span class="type"></span></i></td>
<td><small>hero Invoker</small></td>
</tr>
<tr>
<td width="80px"><i class="hero io"></i></td>
<td width="80px"><i class="hero io"><span class="type"></span></i></td>
<td><small>hero Io</small></td>
</tr>
<tr>
<td width="80px"><i class="hero jakiro"></i></td>
<td width="80px"><i class="hero jakiro"><span class="type"></span></i></td>
<td><small>hero Jakiro</small></td>
</tr>
<tr>
<td width="80px"><i class="hero juggernaut"></i></td>
<td width="80px"><i class="hero juggernaut"><span class="type"></span></i></td>
<td><small>hero Juggernaut</small></td>
</tr>
<tr>
<td width="80px"><i class="hero keeperofthelight"></i></td>
<td width="80px"><i class="hero keeperofthelight"><span class="type"></span></i></td>
<td><small>hero Keeper of the Light</small></td>
</tr>
<tr>
<td width="80px"><i class="hero kunkka"></i></td>
<td width="80px"><i class="hero kunkka"><span class="type"></span></i></td>
<td><small>hero Kunkka</small></td>
</tr>
<tr>
<td width="80px"><i class="hero legioncommander"></i></td>
<td width="80px"><i class="hero legioncommander"><span class="type"></span></i></td>
<td><small>hero Legion Commander</small></td>
</tr>
<tr>
<td width="80px"><i class="hero leshrac"></i></td>
<td width="80px"><i class="hero leshrac"><span class="type"></span></i></td>
<td><small>hero Leshrac</small></td>
</tr>
<tr>
<td width="80px"><i class="hero lich"></i></td>
<td width="80px"><i class="hero lich"><span class="type"></span></i></td>
<td><small>hero Lich</small></td>
</tr>
<tr>
<td width="80px"><i class="hero lifestealer"></i></td>
<td width="80px"><i class="hero lifestealer"><span class="type"></span></i></td>
<td><small>hero Lifestealer</small></td>
</tr>
<tr>
<td width="80px"><i class="hero lina"></i></td>
<td width="80px"><i class="hero lina"><span class="type"></span></i></td>
<td><small>hero Lina</small></td>
</tr>
<tr>
<td width="80px"><i class="hero lion"></i></td>
<td width="80px"><i class="hero lion"><span class="type"></span></i></td>
<td><small>hero Lion</small></td>
</tr>
<tr>
<td width="80px"><i class="hero lonedruid"></i></td>
<td width="80px"><i class="hero lonedruid"><span class="type"></span></i></td>
<td><small>hero Lone Druid</small></td>
</tr>
<tr>
<td width="80px"><i class="hero luna"></i></td>
<td width="80px"><i class="hero luna"><span class="type"></span></i></td>
<td><small>hero Luna</small></td>
</tr>
<tr>
<td width="80px"><i class="hero lycan"></i></td>
<td width="80px"><i class="hero lycan"><span class="type"></span></i></td>
<td><small>hero Lycan</small></td>
</tr>
<tr>
<td width="80px"><i class="hero magnus"></i></td>
<td width="80px"><i class="hero magnus"><span class="type"></span></i></td>
<td><small>hero Magnus</small></td>
</tr>
<tr>
<td width="80px"><i class="hero medusa"></i></td>
<td width="80px"><i class="hero medusa"><span class="type"></span></i></td>
<td><small>hero Medusa</small></td>
</tr>
<tr>
<td width="80px"><i class="hero meepo"></i></td>
<td width="80px"><i class="hero meepo"><span class="type"></span></i></td>
<td><small>hero Meepo</small></td>
</tr>
<tr>
<td width="80px"><i class="hero mirana"></i></td>
<td width="80px"><i class="hero mirana"><span class="type"></span></i></td>
<td><small>hero Mirana</small></td>
</tr>
<tr>
<td width="80px"><i class="hero morphling"></i></td>
<td width="80px"><i class="hero morphling"><span class="type"></span></i></td>
<td><small>hero Morphling</small></td>
</tr>
<tr>
<td width="80px"><i class="hero nagasiren"></i></td>
<td width="80px"><i class="hero nagasiren"><span class="type"></span></i></td>
<td><small>hero Naga Siren</small></td>
</tr>
<tr>
<td width="80px"><i class="hero naturesprophet"></i></td>
<td width="80px"><i class="hero naturesprophet"><span class="type"></span></i></td>
<td><small>hero Natures Prophet</small></td>
</tr>
<tr>
<td width="80px"><i class="hero necrophos"></i></td>
<td width="80px"><i class="hero necrophos"><span class="type"></span></i></td>
<td><small>hero Necrophos</small></td>
</tr>
<tr>
<td width="80px"><i class="hero nightstalker"></i></td>
<td width="80px"><i class="hero nightstalker"><span class="type"></span></i></td>
<td><small>hero Night Stalker</small></td>
</tr>
<tr>
<td width="80px"><i class="hero nyxassassin"></i></td>
<td width="80px"><i class="hero nyxassassin"><span class="type"></span></i></td>
<td><small>hero Nyx Assassin</small></td>
</tr>
<tr>
<td width="80px"><i class="hero ogremagi"></i></td>
<td width="80px"><i class="hero ogremagi"><span class="type"></span></i></td>
<td><small>hero Ogre Magi</small></td>
</tr>
<tr>
<td width="80px"><i class="hero omniknight"></i></td>
<td width="80px"><i class="hero omniknight"><span class="type"></span></i></td>
<td><small>hero Omniknight</small></td>
</tr>
<tr>
<td width="80px"><i class="hero oracle"></i></td>
<td width="80px"><i class="hero oracle"><span class="type"></span></i></td>
<td><small>hero Oracle</small></td>
</tr>
<tr>
<td width="80px"><i class="hero outworlddevourer"></i></td>
<td width="80px"><i class="hero outworlddevourer"><span class="type"></span></i></td>
<td><small>hero Outworld Devourer</small></td>
</tr>
<tr>
<td width="80px"><i class="hero phantomassassin"></i></td>
<td width="80px"><i class="hero phantomassassin"><span class="type"></span></i></td>
<td><small>hero Phantom Assassin</small></td>
</tr>
<tr>
<td width="80px"><i class="hero phantomlancer"></i></td>
<td width="80px"><i class="hero phantomlancer"><span class="type"></span></i></td>
<td><small>hero Phantom Lancer</small></td>
</tr>
<tr>
<td width="80px"><i class="hero phoenix"></i></td>
<td width="80px"><i class="hero phoenix"><span class="type"></span></i></td>
<td><small>hero Phoenix</small></td>
</tr>
<tr>
<td width="80px"><i class="hero puck"></i></td>
<td width="80px"><i class="hero puck"><span class="type"></span></i></td>
<td><small>hero Puck</small></td>
</tr>
<tr>
<td width="80px"><i class="hero pudge"></i></td>
<td width="80px"><i class="hero pudge"><span class="type"></span></i></td>
<td><small>hero Pudge</small></td>
</tr>
<tr>
<td width="80px"><i class="hero pugna"></i></td>
<td width="80px"><i class="hero pugna"><span class="type"></span></i></td>
<td><small>hero Pugna</small></td>
</tr>
<tr>
<td width="80px"><i class="hero queenofpain"></i></td>
<td width="80px"><i class="hero queenofpain"><span class="type"></span></i></td>
<td><small>hero Queen of Pain</small></td>
</tr>
<tr>
<td width="80px"><i class="hero razor"></i></td>
<td width="80px"><i class="hero razor"><span class="type"></span></i></td>
<td><small>hero Razor</small></td>
</tr>
<tr>
<td width="80px"><i class="hero riki"></i></td>
<td width="80px"><i class="hero riki"><span class="type"></span></i></td>
<td><small>hero Riki</small></td>
</tr>
<tr>
<td width="80px"><i class="hero rubick"></i></td>
<td width="80px"><i class="hero rubick"><span class="type"></span></i></td>
<td><small>hero Rubick</small></td>
</tr>
<tr>
<td width="80px"><i class="hero sandking"></i></td>
<td width="80px"><i class="hero sandking"><span class="type"></span></i></td>
<td><small>hero Sand King</small></td>
</tr>
<tr>
<td width="80px"><i class="hero shadowdemon"></i></td>
<td width="80px"><i class="hero shadowdemon"><span class="type"></span></i></td>
<td><small>hero Shadow Demon</small></td>
</tr>
<tr>
<td width="80px"><i class="hero shadowfiend"></i></td>
<td width="80px"><i class="hero shadowfiend"><span class="type"></span></i></td>
<td><small>hero Shadow Fiend</small></td>
</tr>
<tr>
<td width="80px"><i class="hero shadowshaman"></i></td>
<td width="80px"><i class="hero shadowshaman"><span class="type"></span></i></td>
<td><small>hero Shadow Shaman</small></td>
</tr>
<tr>
<td width="80px"><i class="hero silencer"></i></td>
<td width="80px"><i class="hero silencer"><span class="type"></span></i></td>
<td><small>hero Silencer</small></td>
</tr>
<tr>
<td width="80px"><i class="hero skywrathmage"></i></td>
<td width="80px"><i class="hero skywrathmage"><span class="type"></span></i></td>
<td><small>hero Skywrath Mage</small></td>
</tr>
<tr>
<td width="80px"><i class="hero slardar"></i></td>
<td width="80px"><i class="hero slardar"><span class="type"></span></i></td>
<td><small>hero Slardar</small></td>
</tr>
<tr>
<td width="80px"><i class="hero slark"></i></td>
<td width="80px"><i class="hero slark"><span class="type"></span></i></td>
<td><small>hero Slark</small></td>
</tr>
<tr>
<td width="80px"><i class="hero sniper"></i></td>
<td width="80px"><i class="hero sniper"><span class="type"></span></i></td>
<td><small>hero Sniper</small></td>
</tr>
<tr>
<td width="80px"><i class="hero spectre"></i></td>
<td width="80px"><i class="hero spectre"><span class="type"></span></i></td>
<td><small>hero Spectre</small></td>
</tr>
<tr>
<td width="80px"><i class="hero spiritbreaker"></i></td>
<td width="80px"><i class="hero spiritbreaker"><span class="type"></span></i></td>
<td><small>hero Spirit Breaker</small></td>
</tr>
<tr>
<td width="80px"><i class="hero stormspirit"></i></td>
<td width="80px"><i class="hero stormspirit"><span class="type"></span></i></td>
<td><small>hero Storm Spirit</small></td>
</tr>
<tr>
<td width="80px"><i class="hero sven"></i></td>
<td width="80px"><i class="hero sven"><span class="type"></span></i></td>
<td><small>hero Sven</small></td>
</tr>
<tr>
<td width="80px"><i class="hero techies"></i></td>
<td width="80px"><i class="hero techies"><span class="type"></span></i></td>
<td><small>hero Techies</small></td>
</tr>
<tr>
<td width="80px"><i class="hero templarassassin"></i></td>
<td width="80px"><i class="hero templarassassin"><span class="type"></span></i></td>
<td><small>hero Templar Assassin</small></td>
</tr>
<tr>
<td width="80px"><i class="hero terrorblade"></i></td>
<td width="80px"><i class="hero terrorblade"><span class="type"></span></i></td>
<td><small>hero Terrorblade</small></td>
</tr>
<tr>
<td width="80px"><i class="hero tidehunter"></i></td>
<td width="80px"><i class="hero tidehunter"><span class="type"></span></i></td>
<td><small>hero Tidehunter</small></td>
</tr>
<tr>
<td width="80px"><i class="hero timbersaw"></i></td>
<td width="80px"><i class="hero timbersaw"><span class="type"></span></i></td>
<td><small>hero Timbersaw</small></td>
</tr>
<tr>
<td width="80px"><i class="hero tinker"></i></td>
<td width="80px"><i class="hero tinker"><span class="type"></span></i></td>
<td><small>hero Tinker</small></td>
</tr>
<tr>
<td width="80px"><i class="hero tiny"></i></td>
<td width="80px"><i class="hero tiny"><span class="type"></span></i></td>
<td><small>hero Tiny</small></td>
</tr>
<tr>
<td width="80px"><i class="hero treantprotector"></i></td>
<td width="80px"><i class="hero treantprotector"><span class="type"></span></i></td>
<td><small>hero Treant Protector</small></td>
</tr>
<tr>
<td width="80px"><i class="hero trollwarlord"></i></td>
<td width="80px"><i class="hero trollwarlord"><span class="type"></span></i></td>
<td><small>hero Troll Warlord</small></td>
</tr>
<tr>
<td width="80px"><i class="hero tusk"></i></td>
<td width="80px"><i class="hero tusk"><span class="type"></span></i></td>
<td><small>hero Tusk</small></td>
</tr>
<tr>
<td width="80px"><i class="hero undying"></i></td>
<td width="80px"><i class="hero undying"><span class="type"></span></i></td>
<td><small>hero Undying</small></td>
</tr>
<tr>
<td width="80px"><i class="hero ursa"></i></td>
<td width="80px"><i class="hero ursa"><span class="type"></span></i></td>
<td><small>hero Ursa</small></td>
</tr>
<tr>
<td width="80px"><i class="hero vengefulspirit"></i></td>
<td width="80px"><i class="hero vengefulspirit"><span class="type"></span></i></td>
<td><small>hero Vengeful Spirit</small></td>
</tr>
<tr>
<td width="80px"><i class="hero venomancer"></i></td>
<td width="80px"><i class="hero venomancer"><span class="type"></span></i></td>
<td><small>hero Venomancer</small></td>
</tr>
<tr>
<td width="80px"><i class="hero viper"></i></td>
<td width="80px"><i class="hero viper"><span class="type"></span></i></td>
<td><small>hero Viper</small></td>
</tr>
<tr>
<td width="80px"><i class="hero visage"></i></td>
<td width="80px"><i class="hero visage"><span class="type"></span></i></td>
<td><small>hero Visage</small></td>
</tr>
<tr>
<td width="80px"><i class="hero warlock"></i></td>
<td width="80px"><i class="hero warlock"><span class="type"></span></i></td>
<td><small>hero Warlock</small></td>
</tr>
<tr>
<td width="80px"><i class="hero weaver"></i></td>
<td width="80px"><i class="hero weaver"><span class="type"></span></i></td>
<td><small>hero Weaver</small></td>
</tr>
<tr>
<td width="80px"><i class="hero windranger"></i></td>
<td width="80px"><i class="hero windranger"><span class="type"></span></i></td>
<td><small>hero Windranger</small></td>
</tr>
<tr>
<td width="80px"><i class="hero winterwyvern"></i></td>
<td width="80px"><i class="hero winterwyvern"><span class="type"></span></i></td>
<td><small>hero Winter Wyvern</small></td>
</tr>
<tr>
<td width="80px"><i class="hero witchdoctor"></i></td>
<td width="80px"><i class="hero witchdoctor"><span class="type"></span></i></td>
<td><small>hero Witch Doctor</small></td>
</tr>
<tr>
<td width="80px"><i class="hero wraithking"></i></td>
<td width="80px"><i class="hero wraithking"><span class="type"></span></i></td>
<td><small>hero Wraith King</small></td>
</tr>
<tr>
<td width="80px"><i class="hero zeus"></i></td>
<td width="80px"><i class="hero zeus"><span class="type"></span></i></td>
<td><small>hero Zeus</small></td>
</tr>
</table>
</body>
</html>