-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (122 loc) · 4.33 KB
/
index.html
File metadata and controls
137 lines (122 loc) · 4.33 KB
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
129
130
131
132
133
134
135
136
137
<!DOCTYPE HTML>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-166863606-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-166863606-2');
</script>
<title>IMA</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<nav>
<ul>
<li><a href="#intro">SUBSCRIBE</a></li>
<li><a href="#one">IMA</a></li>
<li><a href="#two">TRY</a></li>
<li><a href="#work">ABOUT US</a></li>
</ul>
</nav>
</header>
<!-- Intro -->
<section id="intro" class="main style1 dark fullscreen">
<div class="content">
<div id="icon-header"><h>IMA</h></div>
<div id="login">
<input id="email" autocomplete="off" placeholder="E-mail"></input>
<p></p>
<input id="password" type="password" placeholder="Password"></input>
<p></p>
<button type="button" class="btn btn-outline-primary" onclick="login();">Log in</button>
<div id="btn">
<p onclick="signup();"><u>Create new account?</u></p>
</div>
</div>
<p class="alert alert-danger" role="alert" id="feedback"></p>
</div>
</div>
</section>
<!-- One -->
<section id="one" class="main style2 right dark fullscreen">
<div class="content box style2">
<header>
<h2>IMA</h2>
</header>
<p>Imprint Magnificent Age</p>
</div>
</section>
<!-- Two -->
<section id="two" class="main style2 left dark fullscreen">
<div class="content box style2">
<header>
<h2>Try out our prototype</h2>
</header>
<a href="https://rin-lr.github.io/main.github.io/"><button id="figma">Try</button></a>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<!-- Icons -->
<ul class="icons">
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon brands fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
<li><a href="#" class="icon brands fa-pinterest"><span class="label">Pinterest</span></a></li>
</ul>
<!-- Menu -->
<ul class="menu">
<li>© Untitled</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li>
</ul>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
$("#mc-embedded-subscribe").on("click", function() {
$("#mc_embed_signup").hide(10);
console.log("Thank you!");
});
$("#mc-embedded-subscribe").on("click", function() {
$("#thanku").html("Thanks for subscribing");
});
</script>
<script>//pressed
$("#mc-embedded-subscribe").on("click", function() {
console.log("sub pressed")
dataLayer.push({
event: "Subscribe"
});
});
$("#header").on("click", function() {
console.log("header pressed")
dataLayer.push({
event: "header"
});
});
$("#figma").on("click", function() {
console.log("try pressed")
dataLayer.push({
event: "try button"
});
});
</script>
</body>
</html>