This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
138 lines (137 loc) · 3.95 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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta charset='utf8' />
<title>The Laughing Man Logo built with HTML and CSS 3</title>
<link href='./laughing-man.css' rel='stylesheet' type='text/css' />
</head>
<script type='text/javascript'>
//<![CDATA[
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20850973-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
//]]>
</script>
<body>
<div id='laughing-man'>
<div class='outer'>
<div class='inner'>
<div class='eye left'>
<div class='mask'></div>
</div>
<div class='eye right'>
<div class='mask'></div>
</div>
<div class='smile-wrapper'>
<div class='smile'>
<div class='mask-wrapper'>
<div class='mask'></div>
</div>
</div>
</div>
</div>
<cite>
<span>I</span>
<span> </span>
<span>t</span>
<span>h</span>
<span>o</span>
<span>u</span>
<span>g</span>
<span>h</span>
<span>t</span>
<span> </span>
<span>w</span>
<span>h</span>
<span>a</span>
<span>t</span>
<span> </span>
<span>I</span>
<span>'</span>
<span>d</span>
<span> </span>
<span>d</span>
<span>o</span>
<span> </span>
<span>w</span>
<span>a</span>
<span>s</span>
<span>,</span>
<span> </span>
<span>I</span>
<span>'</span>
<span>d</span>
<span> </span>
<span>p</span>
<span>r</span>
<span>e</span>
<span>t</span>
<span>e</span>
<span>n</span>
<span>d</span>
<span> </span>
<span>I</span>
<span> </span>
<span>w</span>
<span>a</span>
<span>s</span>
<span> </span>
<span>o</span>
<span>n</span>
<span>e</span>
<span> </span>
<span>o</span>
<span>f</span>
<span> </span>
<span>t</span>
<span>h</span>
<span>o</span>
<span>s</span>
<span>e</span>
<span> </span>
<span>d</span>
<span>e</span>
<span>a</span>
<span>f</span>
<span>-</span>
<span>m</span>
<span>u</span>
<span>t</span>
<span>e</span>
<span>s</span>
<span> </span>
</cite>
<div class='hat'>
<div class='tip'></div>
<div class='edge'></div>
<div class='gap'></div>
<div class='rim'></div>
</div>
</div>
</div>
<div id='about'>
<p>
The <b>Laughing Man</b> (笑い男) is a notorious hacker in the
anime series Ghost in the Shell: Stand Alone Complex, known
for superimposing his animated logo over his face by hacking
into the cybernetic eyes of onlookers.
</p>
<iframe width="460" height="315" src="http://www.youtube.com/embed/I7n8eQDsVSQ" frameborder="0" allowfullscreen></iframe>
<p>
This Logo was built using only CSS and HTML, no JavaScript was
used.
</p>
<p>
Built by
<a href='http://robb.is'>
Robert Böhnke
</a>
</p>
</div>
</body>
</html>