-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
67 lines (65 loc) · 2.84 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
<!DOCTYPE html>
<html>
<head>
<title>Quotes on JavaScript</title>
<meta name="description" content="Quotes on JavaScript is a project to collect the best quotes about everyone's favorite language to hate, JavaScript.">
<style>
@import url(http://fonts.googleapis.com/css?family=IM+Fell+Great+Primer:400,400italic);
body { background:#F5F5F5; margin:20px 10px 0 10px; font-family: helvetica, arial, sans-serif; font-size:13px; color:#333; }
.clear { clear:both; }
#wrapper { max-width:900px; margin:40px auto; }
a { color:#c00; transition: opacity 0.25s; opacity: 0.5;}
a:hover { opacity: 1; }
h1 { float:left; }
h1 svg { position:relative; top:20px; }
h1 a { color:#ccc; text-decoration:none; opacity: 1; }
svg { display:none; }
h2 { font-weight:normal; }
blockquote { padding:15px; margin:15px; font-family: 'IM Fell Great Primer', georgia, serif; font-size:70px; }
blockquote:before { content:'\201C'; }
blockquote:after { content:'\201D'; }
cite { font-size:19px; }
cite:before { content:'- '; }
nav { float:right; }
nav ol { list-style:none; padding:15px 0; }
nav li { float:left; margin:0 25px 0 0; }
nav a { text-decoration:none; border-radius: 3px; border: 1px solid #c00; padding: 5px 8px;}
.bold { font-weight: bold; }
#copyright { font-size:12px; color:#ccc; margin:50px 0 0 0; }
#copyright span { font-style:italic; }
.refresh { display:inline-block; margin:15px 15px 0 0; float:right; }
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4491651-9', 'quotesonjavascript.com');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="wrapper">
<header>
<h1><a href="/">Quotes on JavaScript</a></h1>
<nav>
<ol>
<li><a href="https://github.com/OscarGodson/Quotes-on-JavaScript/issues/new"><span class="bold">+</span> Submit</a></li>
</ol>
</nav>
</header>
<br class="clear">
<article id="quote">
<blockquote></blockquote>
<cite></cite>
<br>
<span class="refresh"><a class="permalink" href="">Permalink</a> | <a href="/">See Another</a></span>
</article>
<footer>
<p id="copyright">Follow me on Twitter <a href="http://twitter.com/oscargodson">@oscargodson</a></p>
</footer>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="quotes.js"></script>
</body>
</html>