-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (105 loc) · 6.06 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SlopeJunkie</title>
<link rel="shortcut icon" href="images/favicon.png" />
<meta name="description" content="your only on-mountian concierge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-89722835-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="footer"><p>Are you a resort interested in joining our network? <a href="http://eepurl.com/cwmTy1" target="_blank">SIGN UP HERE</a></p></div>
<div class="container">
<div class="copy">
<img src="images/logo.svg" alt="slopejunkie"/>
<h2>You and your buddies are in the parking lot, </br>you turn to each other and ask...</h2>
<h1>WHERE SHOULD WE GO FIRST?</h1>
<a class="abutton" onclick="openModal();" href="#">GAIN EARLY ACCESS</a>
<p class="sub"><i>Slopejunkie is your on-moutain concierge. COMING SOON</i></p>
</div>
<div class="pics">
<div class="holder">
<img src="images/pics-downtown.svg" class="one"/>
<img src="images/pics-boards.svg" class="two"/>
<img src="images/pics-powder.svg" class="three"/>
<img src="images/pics-jump.svg" class="four"/>
<img src="images/pics-camera.svg" class="five"/>
</div>
</div>
</div>
<div class="overlay is-hidden" id="overlay">
<div class="modal-content">
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form action="//slopejunkie.us14.list-manage.com/subscribe/post?u=ace59073ac0f793335eae9866&id=36d4efa1df" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<ul class="form-style-1">
<div id="mc_embed_signup_scroll">
<li class="mc-field-group">
<label for="mce-FNAME">Full Name <span class="asterisk">*</span></label>
<input type="text" value="" name="FNAME" class="required field-divided" id="mce-FNAME" placeholder="First">
<input type="text" value="" name="LNAME" class="required field-divided" id="mce-LNAME" placeholder="Last">
</li>
</div>
<div class="mc-field-group">
<li class="mc-field-group">
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span></label>
<input type="email" value="" name="EMAIL" class="required email field-long" id="mce-EMAIL">
</li>
</div>
<div class="mc-field-group">
<li class="mc-field-group">
<label for="mce-ZIP">Zip Code <span class="asterisk">*</span></label>
<input type="text" value="" name="ZIP" class="field-long" id="mce-ZIP">
</li>
</div>
<div class="mc-field-group">
<li class="mc-field-group">
<label for="mce-FRESORT">Favorite Resort <span class="asterisk">*</span></label>
<input type="text" value="" name="FRESORT" class="required field-long" id="mce-FRESORT">
</li>
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_ace59073ac0f793335eae9866_36d4efa1df" tabindex="-1" value=""></div>
<div>
<div class="clear left">
<input type="submit" value="GAIN ACCESS" name="GAIN ACCESS" id="mc-embedded-subscribe" class="button submit">
</div>
<div class="left">
<span class="button-close" onclick="closeModal();">Close</span>
</div>
<div class="clear"></div>
</div>
</ul>
</form>
</div>
<!--End mc_embed_signup-->
</div>
</div>
<script>
var overlay = document.getElementById('overlay');
function openModal(){
overlay.classList.remove("is-hidden");
}
function closeModal(){
overlay.classList.add("is-hidden");
}
</script>
</body>
</html>