forked from hakimel/DOM-Tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (46 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A Christmas tree built out of form elements." />
<meta name="author" content="Hakim El Hattab" />
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>DOM Tree</title>
<link href="css/reset.css" rel="stylesheet" media="screen" />
<link href="css/main.css" rel="stylesheet" media="screen" />
<link href='http://fonts.googleapis.com/css?family=Armata' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<h1>DOM Tree</h1>
<span class="attribution"> <a href="http://hakim.se/experiments/domtree">about this experiment</a> | created by <a href="http://twitter.com/hakimel">@hakimel</a></span>
<div class="share">
<div class="facebook">
<iframe id="facebook-button" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhakim.se%2Fexperiments%2Fcss%2Fdomtree%2F&layout=button_count&show_faces=false&width=105&action=like&font=arial&colorscheme=light&height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:105px; height:40px;" allowTransparency="true"></iframe>
</div>
<div class="twitter">
<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://hakim.se/experiments/css/domtree/" data-text="A Christmas tree made out of form elements! Created by @hakimel" data-count="horizontal" data-related="hakimel">Tweet</a>
</div>
<div class="plusone">
<div class="g-plusone"></div>
</div>
</div>
</header>
<div class="tree"></div>
<script src="js/domtree.js"></script>
<!-- Third party tracking and sharing code below -->
<a href="https://github.com/hakimel/dom-tree"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10;" src="https://a248.e.akamai.net/camo.github.com/e6bef7a091f5f3138b8cd40bc3e114258dd68ddf/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub"></a>
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-15240703-1']);
_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>
</html>