-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (78 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/skeleton.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/solid.min.css">
<!-- <script src="https://kit.fontawesome.com/a076d05399.js" defer></script> -->
</head>
<body>
<script>
//Nav bar
</script>
<nav class="navbar">
<div class="navbar-container">
<span class="navbar-toggle" id="js-navbar-toggle">
<i class="fas fa-bars"></i>
</span>
<a href="#" class="logo">Subscribeful</a>
<ul class="main-nav" id="js-menu">
<li>
<a href="./index.html" class="nav-links">Home</a>
</li>
<li>
<a href="#" class="nav-links">Prices</a>
</li>
<li>
<a href="./login.html" class="nav-links">Login</a>
</li>
<li>
<a href="./register.html" class="nav-links">Sign Up</a>
</li>
</ul>
</div>
</nav>
<script>
let mainNav = document.getElementById("js-menu");
let navBarToggle = document.getElementById("js-navbar-toggle");
navBarToggle.addEventListener("click", function() {
mainNav.classList.toggle("active");
});
</script>
<div class="basic-container">
<h1>ummm, Simple Recurring Payments (placeholder)</h1>
</br>
</br>
</br>
</br>
</br>
</br>
<h1>code with an example</h1>
</br>
</br>
</br>
</br>
</br>
</br>
<div class="row">
<div class="four columns">
<h5 class="text-center">Membership</h5>
<h2 class="text-center"><sup>$</sup>9.95<small style="color: grey">/month</small></h2>
<div class="row buy-features">
<ul class="ten columns">
<li><strong>Simple</strong> to use</li>
<li><strong>Fun</strong> to use</li>
</ul>
</div>
</br>
<center><input class="button-success" style="background: #5cb85c; color: white; border-color: none;" type="button" value="Purchase"></center>
</div>
</div>
</div>
</body>
</html>