-
Notifications
You must be signed in to change notification settings - Fork 1
/
mailinglist.html
65 lines (49 loc) · 1.93 KB
/
mailinglist.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- don't load from cache I hope -->
<meta http-equiv="expires" content="0">
<title>HAkron 3000</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Cabin:700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<!-- HERE'S YOUR DAMN FAVICON, CAM -->
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="https://hakron.io">Hakron</a>
</div>
</nav>
<header class="masthead">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2 style="margin-top: 3em">Join Our mailing List!</h2>
<div class="input-group">
<input type="text" id="emailbox" placeholder="zippy@hakron.io" style="font-size: 30px" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" onclick="addEmail" style="font-size: 25px" type="button">Add</button>
</span>
</div>
</div>
</div>
</div>
</header>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.js"></script>
<script src="js/script.js"></script>
</body>
</html>