forked from anuj840/learn-opensource.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
46 lines (41 loc) · 2.06 KB
/
resources.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn Opensource</title>
<link rel="shortcut icon" href="./img/logo.png" type="image/png" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/aos.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<script src="./js/component/navbar.js"></script> <!--importing static HTML CODE-->
<div class="container py-5 d-flex flex-column align-items-center justify-content-center" data-aos="fade-left">
<h3 class="mt-3 text-muted display-light">Community is preparing resources for you.</h3>
<img src="./img/bugs.svg" class="p-3 my-3 img-fluid" alt="bugs image" />
<a href="https://github.com/learn-opensource/learn-opensource.github.io/issues" target="_blank">
<button
class="btn btn-primary shadow text-decoration-none btn-link px-5 py-3 mt-3 rounded-0 border-0 text-white bg-main">
Wanna Contribute <span class="pl-">?</span>
</button>
</a>
</div>
<script src="./js/component/footer.js"></script> <!--importing static HTML CODE-->
<!--scripts-->
<script src="https://kit.fontawesome.com/a3f929b7cc.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous">
</script>
<script src="./js/main.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init({
duration: 700,
offset: 180
});
</script>
</body>
</html>