This repository has been archived by the owner on Dec 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (114 loc) · 5.57 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!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>CourseHub</title>
<link href="assets/css/desktop.css" rel="stylesheet">
<link href="assets/css/tablet.css" rel="stylesheet">
<link href="assets/css/mobile.css" rel="stylesheet">
<!-- Prefetch -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://use.fontawesome.com">
<!-- Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon.ico">
<link rel="manifest" href="site.webmanifest">
<!-- Plugin -->
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<script src="https://use.fontawesome.com/78a9ef044f.js"></script>
</head>
<body class="spa-template">
<header id="header">
<div class="logo">
<a class="spa" data-name="home" href="/">
<img src="assets/img/logo.png" alt="CourseHub logo">
</a>
</div>
<ul class="nav-left">
<li class="nav-link">
<a href="#search?q=All Courses">Courses</a>
</li>
<li class="nav-link">
<a href="#search?q=Resources">Resources</a>
</li>
</ul>
<ul class="nav-right">
<li class="nav-link">
<a href="login.html">Login</a>
</li>
<li class="nav-link">
<a href="javascript:;" id="btnContactUs">Contact Us</a>
<i class="fa fa-envelope" aria-hidden="true"></i>
</li>
</ul>
</header>
<div id="container">
</div>
<footer>
<div class="footer">
<div>
<h4>Courses</h4>
<ul class="no-style">
<li><a class="no-style text-white" href="#course">Arts and Design</a></li>
<li><a class="no-style text-white" href="#course">Business</a></li>
<li><a class="no-style text-white" href="#course">Career Online High School</a></li>
<li><a class="no-style text-white" href="#course">Computer Applications</a></li>
<li><a class="no-style text-white" href="#course">Computer Science</a></li>
<li><a class="no-style text-white" href="#course">Construction and Trades</a></li>
<li><a class="no-style text-white" href="#course">Health and Fitness</a></li>
<li><a class="no-style text-white" href="#course">Legal</a></li>
<li><a class="no-style text-white" href="#course">Math and Science</a></li>
<li><a class="no-style text-white" href="#course">Writing</a></li>
</ul>
</div>
<div>
<h4>Account</h4>
<ul class="no-style">
<li><a class="no-style text-white" href="login.html">Login</a></li>
<li><a class="no-style text-white" href="signup.html">Register</a></li>
</ul>
</div>
<div>
<h4>Resources</h4>
<ul class="no-style">
<li><a class="no-style text-white spa" data-name="about" href="about.html">About Course Hub</a></li>
<li><a class="no-style text-white" href="#course">Corporate Training</a></li>
<li><a class="no-style text-white" href="#">Blog</a></li>
</ul>
<h4>Connect</h4>
<ul class="no-style social-icons">
<li><a href="http://fb.com/"><i class="fa fa-facebook"></i></a></li>
<li><a href="http://twitter.com/"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</div>
<p class="footer-copyright">Copyright © 2019 CourseHub</p>
</footer>
<a id="toHeader" class="float">
<i class="fa fa-arrow-up my-float"></i>
</a>
<div id="modalContact" class="modal">
<div class="modal-content">
<span class="close" style="float: right;">×</span>
<h3 class="pd-b-30 text-primary">Contact Us</h3>
<form id="contactForm" method="POST" class="pd-t-10">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstname" class="contact" placeholder="First Name" required>
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" class="contact" placeholder="Last name">
<label for="email">Email</label>
<input type="email" id="lname" name="email" class="contact" placeholder="Email" required>
<label for="subject">Message</label>
<textarea id="subject" name="subject" class="contact" placeholder="Message" style="height:200px" required></textarea>
<input type="submit" class="btn btn-lg btn-primary" value="Submit">
</form>
</div>
</div>
<script src="assets/js/jquery-3.4.1.min.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>