-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Flutter Chennai x Hacktoberfest | A list of repositories for the
Hacktoberfest 2020.
</title>
<link rel="shortcut icon" href="./assets/images/logo.png" type="image/x-icon">
<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/flutter.png"
alt="Flutter Chennai x Hacktoberfest Logo"
class="navbar__logo"
/>
<a href="https://github.com/flutterchennai/Hacktoberfest2020">
<h4><i class="fab fa-github"></i></h4
></a>
</nav>
<!-- Hero Section -->
<section class="hero__wrapper">
<div class="hero__title">
<h3>A list of repositories for the Hacktoberfest 2020.</h3>
<h5>with <i class="fas fa-heart"></i> by <b>Flutter Chennai</b>.</h5>
</div>
<img
src="./assets/images/backdrop.png"
alt="Hacktoberfest Logo"
class="hero__image"
/>
</section>
<!-- Repositories Section-->
<section class="repos__wrapper">
<div class="repos__list"></div>
</section>
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"
></script>
<script src="./data.js"></script>
<script src="./main.js"></script>
</body>
</html>