-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
69 lines (67 loc) · 3.31 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Logo Experiments</title>
<meta name="description" content="Goal: Demonstrate every possible way to draw a logo with modern front-end techniques." />
<link rel="stylesheet" href="all.css">
<meta property="og:site_name" content="Logo Experiments">
<meta property="og:title" content="Logo Experiments">
<meta property="og:description" content="Goal: Demonstrate every possible way to draw a logo with modern front-end techniques.">
<meta property="og:image" content="images/icon-font-logo.png">
<style>
.gallery-header {
text-align: center;
}
.gallery {
max-width: 766px;
margin: 0 auto;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-content: flex-end;
align-content: flex-end;
}
.gallery > a {
margin: 30px 16px 16px;
width: 222px;
height: 255px;
font-size: 18px;
text-decoration: none;
color: #252525;
}
.gallery img {
border: 1px solid #cccccc;
}
.label {
text-align: center;
margin-bottom: 8px;
}
</style>
</head>
<body>
<header class="gallery-header">
<h1>Logo Experiments</h1>
<p>Goal: Demonstrate every possible way to draw a logo with modern front-end techniques.</p>
</header>
<section class="gallery">
<a href="css.html" title="Pure CSS Logo"><div class="label">Pure CSS</div><img src="images/css-logo.png" alt="Logo in Pure CSS"></a>
<a href="svg.html" title="SVG Logo"><div class="label">SVG</div><img src="images/svg-logo.png" alt="Logo in SVG"></a>
<a href="component.html" title="Web Component Logo"><div class="label">Web Component</div><img src="images/component-logo.png" alt="Logo in a Web Component"></a>
<a href="icon-font.html" title="Icon Font Logo"><div class="label">Icon Font</div><img src="images/icon-font-logo.png" alt="Logo in an Icon Font"></a>
<a href="webgl.html" title="WebGL Logo"><div class="label">WebGL</div><img src="images/webgl-logo.png" alt="Logo in WebGL"></a>
<a href="ascii.html" title="ASCII Logo"><div class="label">ASCII</div><img src="images/ascii-logo.png" alt="Logo in ASCII Characters"></a>
<a href="clipping.html" title="CSS Clipping Logo"><div class="label">CSS Clipping</div><img src="images/clipping-logo.png" alt="Logo Using CSS Clipping"></a>
<a href="canvas.html" title="Canvas Logo"><div class="label">Canvas</div><img src="images/canvas-logo.png" alt="Logo in Canvas"></a>
<a href="webvr.html" title="WebVR Logo"><div class="label">WebVR</div><img src="images/webvr-logo.png" alt="Logo in Web Virtual Reality"></a>
</section>
<a href="https://github.com/sparkbox/logo-experiments"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
</body>
</html>