- 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
<!DOCTYPE html>
<html>
<head>
<title>SVG Icons</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body{
margin: 0px;
font-size:20px;
font-family:sans-serif;
color:#333;
text-align: center;
padding-top: 50px;
}
svg{vertical-align: middle;}
</style>
</head>
<body>
<!-- basic x -->
<svg class="basic_x" width="30" height="30" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<style type="text/css"><![CDATA[ .basic_x line{ stroke:#333; stroke-width:1; stroke-linecap:round; } ]]></style>
<line x1="0.5" y1="0.5" x2="9.5" y2="9.5"></line>
<line x1="0.5" y1="9.5" x2="9.5" y2="0.5"></line>
</svg>
<!-- x in circle -->
<svg width="30" height="30" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<style type="text/css"><![CDATA[ line,circle{ stroke:#333; stroke-width:1; stroke-linecap:round; } ]]></style>
<circle cx="5" cy="5" r="4.5" style="fill:#dff;"></circle>
<line x1="3.5" y1="3.5" x2="6.5" y2="6.5"></line>
<line x1="3.5" y1="6.5" x2="6.5" y2="3.5"></line>
</svg>
<!-- speaker -->
<svg width="30" height="30" viewBox="0 0 8 7" xmlns="http://www.w3.org/2000/svg">
<style type="text/css">
<![CDATA[
rect,polygon{ stroke:none; fill:#333; }
path{ stroke:#333; stroke-width:0.5; stroke-linecap:round; fill:none; }
]]>
</style>
<rect x="0" y="2" width="1" height="3"></rect>
<polygon points="1.5,2 4,0 4,7 1.5,5"></polygon>
<path d="M4.5 3 q0.5 0.5 0 1"></path>
<path d="M5.5 2 q1 1.5 0 3"></path>
<path d="M6.5 1 q1.5 2.5 0 5"></path>
</svg>
<!-- play button -->
<svg width="50" width="50" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:#333; stroke-width:0.3; fill:transparent;"></circle>
<polygon points="4,3 7,5 4,7" style="stroke:none; fill:#333;"></polygon>
</svg>
<!-- bold play button -->
<svg width="50" width="50" id="play_button_svg" viewBox="-1 -1 12 12" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:#333; stroke-width:1.0; fill:transparent;"></circle>
<polygon points="4.2,3.5 6.8,5 4.2,6.5" style="stroke:#333; fill:#333; stroke-width:0.5; stroke-linejoin:round;"></polygon>
</svg>
<!-- cart -->
<svg width="30" height="30" viewBox="0 0 97 75" xmlns="http://www.w3.org/2000/svg">
<style type="text/css"><![CDATA[polygon,circle{fill:black;}]]></style>
<polygon points="0,10 72,10 60,42 12,42"></polygon>
<polygon points="13.5,48.5 64.5,48.5 84,0 97,0 97,10 88,10 70,56 55,56 17,56"></polygon>
<circle cx="32" cy="67" r="7"></circle>
<circle cx="58" cy="67" r="7"></circle>
</svg>
<!-- arrow in circle -->
<svg width="25" height="25" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:none; fill:#333;"></circle>
<polygon points="4.5,3 6.5,5 4.5,7 4,6.5 5.6,5 4,3.5" style="stroke:#fff; stroke-width:0.5; stroke-linejoin:round; fill:#fff;"></polygon>
</svg>
<!-- play button with bigger rounder arrow -->
<svg width="20" height="20" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:#333; stroke-width:0.3; fill:transparent;"></circle>
<polygon points="4,3 7,5 4,7" style="stroke:#333; stroke-width:1.5; fill:#333; stroke-linejoin:round;"></polygon>
</svg>
<!-- down arrow in circle -->
<svg width="25" height="25" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:none; fill:#333;"></circle>
<polyline points="3,4.3 5,6.3 7,4.3" style="stroke:#fff; stroke-width:0.8; stroke-linejoin:round; stroke-linecap:round; fill:none;"></polyline>
</svg>
<!-- down arrow -->
<svg width="25" height="25" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<polyline points="3,4.3 5,6.3 7,4.3" style="stroke:#333; stroke-width:0.8; stroke-linejoin:round; stroke-linecap:round; fill:none;"></polyline>
</svg>
<!-- left arrow in circle -->
<svg width="25" height="25" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:none; fill:#179;"></circle>
<polyline points="5.7,3 3.7,5 5.7,7" style="stroke:#fff; stroke-width:0.8; stroke-linejoin:round; stroke-linecap:round; fill:none;"></polyline>
</svg>
<!-- right arrow in circle -->
<svg width="25" height="25" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:none; fill:#4ac;"></circle>
<polyline points="4.3,3 6.3,5 4.3,7" style="stroke:#fff; stroke-width:0.8; stroke-linejoin:round; stroke-linecap:round; fill:none;"></polyline>
</svg>
<!-- x in red circle -->
<svg class="redxsvg" width="50" height="50" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<style type="text/css"><![CDATA[ .redxsvg line{ stroke:#fff; stroke-width:0.4; stroke-linecap:round; } ]]></style>
<circle cx="5" cy="5" r="4.5" style="stroke:none; fill:#d32;"></circle>
<line x1="3.3" y1="3.3" x2="6.7" y2="6.7"></line>
<line x1="3.3" y1="6.7" x2="6.7" y2="3.3"></line>
</svg>
<!-- check in circle -->
<svg width="50" height="50" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4.75" style="stroke:none; fill:#73c124;"></circle>
<polyline points="2.7,5 4.2,6.7 7.5,3.6" style="stroke:#fff; stroke-width:0.4; stroke-linejoin:round; stroke-linecap:round; fill:none;"></polyline>
</svg>
<!-- left arrow -->
<svg width="18" height="30" viewBox="0 0 6 10" xmlns="http://www.w3.org/2000/svg">
<polyline points="5,1 1,5 5,9" style="stroke:#333; stroke-width:0.8; stroke-linejoin:round; stroke-linecap:round; fill:none;"></polyline>
</svg>
<!-- lock -->
<svg class="lock_svg" width="30" height="30" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<style type="text/css"><![CDATA[ .lock_svg circle, .lock_svg polygon { stroke:#333; fill:#333; stroke-linejoin:round; stroke-width:0.3; } ]]></style>
<rect x="2" y="4.5" width="6" height="4.5" style="stroke:#333; stroke-width:0.8; stroke-linejoin:round; fill:none;"></rect>
<circle cx="5" cy="6.5" r="0.5"></circle>
<polygon points="4.6,7.7 5,6.5 5.4,7.7"></polygon>
<path d="M3,4 Q3,1.5,5,1.5 Q7,1.5,7,4 L7,4" style="stroke:#333; stroke-width:0.8; fill:none; stroke-linecap:butt;"></path>
</svg>
</body>
</html>