-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (50 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Icons and Logos SVG Gallery</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet" />
<style>
.image-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.image-card {
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
border-radius: 5px;
overflow: hidden;
padding: 1rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
</style>
</head>
<body>
<div class="container">
<h1 class="text-center mt-5 mb-4">SVG Gallery</h1>
<h3 class="text-center mt-5 mb-4">Icons and Logos</h3>
<p>
Various logos and icons I’ve collected throughout the years, all in SVG format for perfect quality no matter the application.
Each icon <em>should</em> conform to the following standards:
<ul>
<li>Run through SVG Optimizer</li>
<li>Viewbox value(s) set</li>
<li>Height and Width value(s) set to <kbd>100%</kbd></li>
</ul>
</p>
<hr />
<div id="image-container" class="image-container"></div>
</div>
<script src="app1.js"></script>
</body>
</html>