-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
30 lines (30 loc) · 829 Bytes
/
test.html
File metadata and controls
30 lines (30 loc) · 829 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Icon Example</title>
</head>
<body style="background-color: black">
<svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-chart-infographic"
width="900"
height="900"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#ffffff"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M7 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" />
<path d="M7 3v4h4" />
<path d="M9 17l0 4" />
<path d="M17 14l0 7" />
<path d="M13 13l0 8" />
<path d="M21 12l0 9" />
</svg>
</body>
</html>