-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (99 loc) · 3.09 KB
/
index.html
File metadata and controls
101 lines (99 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<link rel="icon" href="Assets/Peko_Logo.png" />
<title>Peko App</title>
<!-- Hotjar Tracking Code for www.pekoapp.com -->
<script>
;(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
;(h.hj.q = h.hj.q || []).push(arguments)
}
h._hjSettings = { hjid: 2056722, hjsv: 6 }
a = o.getElementsByTagName('head')[0]
r = o.createElement('script')
r.async = 1
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv
a.appendChild(r)
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=')
</script>
</head>
<body>
<nav class="navbar navbar-light">
<a class="navbar-brand" href="#">
<img src="Assets/Peko_Logo.png" width="60" height="70" alt="" /> Peko
</a>
<div id="navbarSupportedContent">
<a class="nav-link" href="mailto:pekoapp@gmail.com">Contact Us</a>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-sm info">
<div>
<h1>
<b
>The <span class="green-highlight">Smartest</span> Pantry
Management App.</b
>
</h1>
<h4>Less waste. Less guilt.</h4>
</div>
<div class="signup">
<p>
<b>STAY IN THE KNOW.</b> Subscribe for release updates & beta
testing.
</p>
<input
class="signup-input"
id="first_name"
type="text"
placeholder="First Name"
/>
<input
class="signup-input"
id="last_name"
type="text"
placeholder="Last Name"
/>
<br />
<input
class="signup-input"
id="email"
type="text"
placeholder="Email Address"
maxlength="50px"
/>
<br />
<button class="signup-input" id="submit" type="submit">
Submit
</button>
</div>
</div>
<div class="col-sm info-video">
<video autoplay muted loop playsinline id="peko-video">
<source src="Assets/peko-video.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
<div id="message"></div>
<script src="./main.js"></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"
></script>
</body>
</html>