-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<title>Music Finder (Rudderstack implementation)</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="js/config.js"></script>
<script type="text/javascript" src="js/rudder-library.js"></script>
rudderanalytics.ready(() => {
console.log("The JavaScript SDK is ready.");
});
<script type="text/javascript" src="js/rudder.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" href="css/main.css">
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
</head>
<body id="indexBody">
<header>
<div class="leftContainer">
<span id="logo"><a href="https://scott-marinoff.github.io/music-finder-v2-rudderstack/index.html">Music Finder</a></span> Rudderstack implementation <a id="mixpanelLink" href="https://mixpanel.com/project/3425065/view/3929169/app/events" target="_blank" rel="noopener noreferrer">Mixpanel</a>
</div>
<div class="rightContainer">
<span><a href="signup.html">Signup</a></span>
<span><a href="login.html">Login</a></span>
</div>
</header>
</body>
</html>