-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (70 loc) · 2.39 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
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>images</title>
<style>
table {
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid black;
}
</style>
</head>
<body>
<div>
<h1>images</h1>
<table>
<tr>
<td><img src="./arrow.svg" alt="arrow"></td>
<td>https://boozingeorge.github.io/static/arrow.svg</td>
</tr>
<tr>
<td><img src="./calendar.svg" alt="calendar"></td>
<td>https://boozingeorge.github.io/static/calendar.svg</td>
</tr>
<tr>
<td><img src="./close.svg" alt="close"></td>
<td>https://boozingeorge.github.io/static/close.svg</td>
</tr>
<tr>
<td><img src="./illustration.png" alt="illustration"></td>
<td>https://boozingeorge.github.io/static/illustration.png</td>
</tr>
<tr>
<td><img src="./illustration.svg" alt="illustration"></td>
<td>https://boozingeorge.github.io/static/illustration.svg</td>
</tr>
<tr>
<td><img src="./notifications.svg" alt="notifications"></td>
<td>https://boozingeorge.github.io/static/notifications.svg</td>
</tr>
<tr>
<td><img src="./search.svg" alt="search"></td>
<td>https://boozingeorge.github.io/static/search.svg</td>
</tr>
<tr>
<td>SF-Pro-Display-Regular</td>
<td>https://boozingeorge.github.io/static/SF-Pro-Display-Regular.otf</td>
</tr>
<tr>
<td>SF-Pro-Display-Semibold</td>
<td>https://boozingeorge.github.io/static/SF-Pro-Display-Semibold.otf</td>
</tr>
<tr>
<td>SFProText-Medium</td>
<td>https://boozingeorge.github.io/static/SFProText-Medium.ttf</td>
</tr>
<tr>
<td>SFProText-Regular</td>
<td>https://boozingeorge.github.io/static/SFProText-Regular.ttf</td>
</tr>
</table>
</div>
</body>
</html>