forked from ishandeveloper/Coursify-hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (43 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Coursify | A curated list of best free tech courses on the planet
</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
<link rel="stylesheet" href="./assets/main.css" />
</head>
<body>
<!-- Navbar -->
<nav class="main__navbar">
<img src="./assets/images/coursify-notag.png" alt="Coursify x Hacktoberfest Logo" class="navbar__logo" />
<a href="https://github.com/ishandeveloper/Coursify-hacktoberfest">
<h4><i class="fab fa-github"></i></h4>
</a>
</nav>
<!-- Hero Section -->
<section class="hero__wrapper">
<div class="hero__title">
<h3>A curated list of best free learning resources on the planet.</h3>
<h5>
Curated with <i class="fas fa-heart"></i> by the open-source
community.
</h5>
</div>
<img src="./assets/images/backdrop.png" alt="Hacktoberfest Logo" class="hero__image" />
</section>
<!-- Courses Section-->
<section class="courses__wrapper">
<div class="courses__list">
</div>
<div class="pagination"></div>
</section>
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="./courses/data.js"></script>
<script src="./helpers.js"></script>
<script src="./main.js"></script>
</body>
</html>