-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (78 loc) · 4.03 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
<!DOCTYPE html>
<html>
<head>
<title>WebCakes</title>
<link type="text/css" rel="stylesheet" href="./assets/css/normalize.css"></link>
<link type="text/css" rel="stylesheet" href="./assets/css/typeplate.css"></link>
<link type="text/css" rel="stylesheet" href="./assets/css/styles.css"></link>
</head>
<body>
<header>
<div class="title-block">
<img src="./assets/img/webcakes_logo_lrg.png">
<h3>Fresh Web Dev Tools. Baked and delivered weekly.</h3>
</div>
<nav>
<div class="pre-nav">
<p>Sign-up for our weekly
<img src="./assets/img/hot_n_fresh.png">e-mail list. The latest updates straight out of the oven.
<button class="subscribe">Subscribe</button>
<div class="email">
<form action="//webcak.us9.list-manage.com/subscribe/post?u=212fedc967774a4a19221da42&id=27a5b9ff64" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="required" id="mce-EMAIL" placeholder="enter your email here" onfocus="this.placeholder = ''">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<input type="text" name="b_212fedc967774a4a19221da42_27a5b9ff64" tabindex="-1" value="" style="position: absolute; left: -5000px;">
<input type="submit" value="Send Yummy Stuff!" name="subscribe" id="mc-embedded-subscribe" class="button">
</form>
</div>
</p>
</div>
<div class="nav-wrapper">
</div>
</nav>
</header>
<div class="wrap">
<div id="container2">
<div id="container1">
<div class="sub-nav" id="col1"></div>
<div id="col2"></div>
</div>
</div>
</div>
<footer>
<div class="footer-left">
<p>All rights reserved. <a href="index.html">WebCakes</a> 2014</p>
</div>
<div class="footer-right">
<ul>
<li>Know a site?
<a href="mailto:khalidadil29@gmail.com?subject=I know an awesome tool that you need to add!&body=The awesome tool can be found at [www.google.com] and would probably go under [category] and [section].">
<button>Send it!</button>
</a>
</li>
<li><a href="mailto:khalidadil29@gmail.com?subject=Hi, I was browsing the web, and when I found your amazing site...&body=I knew congratulations were in order!">Contact Us</a>
</li>
</ul>
</div>
</footer>
<script type="text/javascript" src="./js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.2.19.min.js"></script>
<script type="text/javascript" src="./js/app.js"></script>
<!--[if lt IE 10]>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$('.back').hide();
$('.icon').mouseenter(function() {
$(this).find('.back').fadeToggle();
}).mouseleave(function() {
$(this).find('.back').fadeToggle();
});
})();
</script>
<![endif]-->
</body>
</html>