-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsingin.html
69 lines (64 loc) · 2.25 KB
/
singin.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
<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">
<!-- Website ICON -->
<link rel="icon" href="img/logo.svg">
<!-- Main CSS -->
<link rel = "stylesheet" type = "text/css" href="css/main.css" />
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<title>Undercode</title>
<!-- Font awesome -->
<script src="https://kit.fontawesome.com/8049d5025a.js"></script>
</head>
<body>
<!--============== navbar section ================= -->
<section class="navBar_section" id="navBar_section">
<div class="wrapper">
<nav class="navbar">
<span class="navbar-toggle" id="js-navbar-toggle">
<i class="fa fa-bars"></i>
</span>
<a href="index.html" class="logo"><span class="logo">undercode.</span></a>
<ul class="main-nav" id="js-menu">
<li>
<a href="index.html" class="nav-links">Home</a>
</li><li>
<a href="resources.html" class="nav-links">Resources</a>
</li>
<li>
<a href="singin.html" class="nav-links">Sign up</a>
</li>
<li>
<a href="#" class="nav-links btn">Donate</a>
</li>
</ul>
</nav>
</div>
</section> <!-- ===== navbar end ===== -->
<section>
<footer>
<div class="wrapper">
<ul class="footer_nav">
<li>2019 by <a href="#">undecode</a></li>
<li><a href="#">Data Privacy Policy</a></li>
<li><a href="#">FAQ</a></li>
<li>
Contact
<ul class="secondary">
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</li>
<li>Lisbon, Portugal</li>
<li></li>
</ul>
</div>
</footer>
</section>
<!-- ===== nav script ===== -->
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>