-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 2.01 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Rubik&display=swap" rel="stylesheet">
<meta name="theme-color" content="#282a36">
<script src="https://kit.fontawesome.com/a4ea25a405.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="lockSize">
<header>
<div id="navMenu" class="navMenu">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="mainLinks">
<a href="/login.html">Sign In</a>
<a href="/register.html">Register</a>
</div>
</div>
<span class="menu" style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</header>
<div class="hero-image">
<div class="hero-text">
<h1>KCB</h1>
<h2>Crypto Bot</h2>
</div>
</div>
<h6>Photo by Worldspectrum from Pexels</h6>
<footer>
<div class="socialAlt">
<a href="https://github.com/Jnorm911" class="loginSocial"><i class="fa fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/joshnorman911/" class="loginSocial"><i class="fab fa-linkedin"></i></a>
</div>
</footer>
</div>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>