-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.97 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>
<head>
<meta charset='utf-8' />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" media="all" href="styles.css">
<title>Web Design Patterns</title>
</head>
<body>
<div class="container">
<div role="main">
<h1>Snippets Library</h1>
<p class="intro">A collection of snippets</p>
<ul>
<li>Google CSE bootstrap reset hack</li>
<li>Hubspot Hacks</li>
<li>Multi-Level Menu</li>
<li>Fixed Aspect Ratio Images</li>
<li>Fixed Aspect Ratio iFrames (videos/maps)</li>
<li><a href="https://github.com/anythingcodes/highlight-share">Highlight and Share</a></li>
<li><a href="https://shopifyengineering.myshopify.com/blogs/engineering/how-17-lines-of-code-improved-shopify-com-loading-by-50">Font load speed increase</a></li>
<li><a href="https://css-tricks.com/full-width-containers-limited-width-parents/">Full Width Containers in Limited Width Parents</a></li>
<li><a href="https://codepen.io/brav0/pen/bJDxt">Background-blend-mode polyfill</li>
</ul>
</div>
<footer role="contentinfo">
<div>
<nav id="menu">
<ul></ul>
</nav>
</div>
</footer>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20320023-13']);
_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>