-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
69 lines (67 loc) · 1.73 KB
/
index.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Pokemon Types SVG Icons</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<h1>Pokemon Type SVG Icons</h1>
<div class="wrapper">
<div class="icon bug">
<img src="icons/bug.svg"/>
</div>
<div class="icon dark">
<img src="icons/dark.svg"/>
</div>
<div class="icon dragon">
<img src="icons/dragon.svg"/>
</div>
<div class="icon electric">
<img src="icons/electric.svg"/>
</div>
<div class="icon fairy">
<img src="icons/fairy.svg"/>
</div>
<div class="icon fighting">
<img src="icons/fighting.svg"/>
</div>
<div class="icon fire">
<img src="icons/fire.svg"/>
</div>
<div class="icon flying">
<img src="icons/flying.svg"/>
</div>
<div class="icon ghost">
<img src="icons/ghost.svg"/>
</div>
<div class="icon grass">
<img src="icons/grass.svg"/>
</div>
<div class="icon ground">
<img src="icons/ground.svg"/>
</div>
<div class="icon ice">
<img src="icons/ice.svg"/>
</div>
<div class="icon normal">
<img src="icons/normal.svg"/>
</div>
<div class="icon poison">
<img src="icons/poison.svg"/>
</div>
<div class="icon psychic">
<img src="icons/psychic.svg"/>
</div>
<div class="icon rock">
<img src="icons/rock.svg"/>
</div>
<div class="icon steel">
<img src="icons/steel.svg"/>
</div>
<div class="icon water">
<img src="icons/water.svg"/>
</div>
</div>
</body>
</html>