-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 2.43 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Coming Soon</title>
<link href="tools/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="tools/jquery.min.js"></script>
<script type="text/javascript" src="tools/cufon-yui.js"></script>
<script type="text/javascript" src="tools/Abraham_Lincoln_400.font.js"></script>
<script type="text/javascript" src="tools/Inspiration_400.font.js"></script>
<script type="text/javascript" src="tools/Museo_Slab_100_400-Museo_Slab_700_400.font.js"></script>
<script type="text/javascript">
Cufon.replace('.logo h1', {fontFamily: 'Inspiration'});
Cufon.replace('.logo h2', {fontFamily: 'Museo Slab 100'});
Cufon.replace('.logo h2 span', {fontFamily: 'Abraham Lincoln'});
Cufon.replace('p.big_text, p.small_text', {fontFamily: 'Museo Slab 100'});
Cufon.replace('p.big_text strong, p.small_text strong', {fontFamily: 'Museo Slab 700'});
</script>
</head>
<body>
<div id="transy">
</div>
<div id="wrapper">
<div class="logo"><h1>Hoppity</h1><h2><strong class="one"></strong>software development <span>&</span> consulting<strong class="two"></strong></h2></div>
<div class="content">
<p class="big_text"><strong>we are working on something</strong> very interesting!</p>
<p class="small_text"><strong>be notified.</strong> we just need your email address.</p>
<form class="form validate"
action="//hoppity.us11.list-manage.com/subscribe/post?u=d2555b7b9630e8ec1bf13759f&id=e8d7424a19" method="post" id="mc-embedded-subscribe-form"
name="mc-embedded-subscribe-form" target="_blank" novalidate>
<div class="field_content">
<input id="mce-EMAIL" name="EMAIL" class="field" type="text" />
<input id="mc-embedded-subscribe" class="submit" type="submit" value="" />
</div>
</form>
<!-- <ul class="social">
<li class="pinterest"><a href="#"></a></li>
<li class="instagram"><a href="#"></a></li>
<li class="twitter"><a href="#"></a></li>
<li class="facebook"><a href="#"></a></li>
</ul> -->
</div>
</div>
<script type="text/javascript">
$('input[type=button]').on('click', function () {
var email = $('#email').val();
$.post('/api/subscribe', { email: email }, function () {
alert('Thank you! We\'ll touch base soon...');
}, 'json');
})
</script>
</body>
</html>