-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (59 loc) · 1.86 KB
/
index.html
File metadata and controls
65 lines (59 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stack Tracker AI</title>
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Anton&display=swap"
rel="stylesheet"
/>
<!-- Reddit Pixel -->
<script>
!(function (w, d) {
if (!w.rdt) {
var p = (w.rdt = function () {
p.sendEvent
? p.sendEvent.apply(p, arguments)
: p.callQueue.push(arguments);
});
p.callQueue = [];
var t = d.createElement("script");
(t.src = "https://www.redditstatic.com/ads/pixel.js"), (t.async = !0);
var s = d.getElementsByTagName("script")[0];
s.parentNode.insertBefore(t, s);
}
})(window, document);
rdt("init", "a2_hzw2ukixg3gj");
rdt("track", "PageVisit");
</script>
<!-- DO NOT MODIFY UNLESS TO REPLACE A USER IDENTIFIER -->
<!-- End Reddit Pixel -->
</head>
<body>
<header class="hero">
<h1 class="hero-title">If you take any of the following…</h1>
</header>
<main>
<section id="supplement-list" class="supplement-list">
<!-- Supplements dynamically injected here -->
</section>
<section class="cta">
<h2 class="cta-title">
…Then you need <span class="cta-highlight">Stack Tracker AI</span>
</h2>
<a
href="https://apps.apple.com/us/app/stack-tracker-ai/id6740147043"
class="app-badge"
>
<img
src="https://developer.apple.com/assets/elements/badges/download-on-the-app-store.svg"
alt="Download on the App Store"
/>
</a>
</section>
</main>
<script src="js/main.js"></script>
</body>
</html>