This repository has been archived by the owner on Jan 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
101 lines (93 loc) · 4.05 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script type="text/javascript" src="./lib/jquery-3.4.1.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="./lib/typewriter.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top navbar-light" id="navbar">
<a class="nav-link" href="#">Jersey Junior Devs</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#links">Join</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contributors</a>
</li>
</ul>
</div>
</nav>
<header>
<div class="text-center" id="header">
</br></br>
<span class="typewriter" id="title">
<h1> <Jersey Junior Devs/> </h1>
</span></br></br>
<h2>Built by members of the community themselves.</h2></br></br>
</header>
<div class="text-center" id="about">
<div class="container" id="terminal">
<img src="./images/about.png" alt="...">
</div>
</div>
<div class="text-center" id="links">
<div class="card links-card" style="width: 15rem;">
<a target="blank" href="https://www.facebook.com/groups/3092720600797985/">
<img src="./images/facebook.png" class="card-img-top links-img" alt="...">
</a>
<div class="card-body">
<p class="card-text"><span class="step">Step 1 </span> Join the Jersey Junior Devs Facebook group.</p>
</div>
</div>
<div class="card links-card" style="width: 15rem;">
<a target="blank" href="https://github.com/Jersey-Junior-Devs/JerseyJuniorDevs">
<img src="./images/github.png" class="card-img-top links-img" alt="...">
</a>
<div class="card-body">
<p class="card-text"><span class="step">Step 2 </span> Fork the Jersey Junior Devs Github Repo.</p>
</div>
</div>
<div class="card links-card" style="width: 15rem;">
<a target="blank" href="https://trello.com/invite/b/NVgGPulp/87a2320880adcc71349d89d12ae59915/jjd-website">
<img src="./images/trello.png" class="card-img-top links-img" alt="...">
</a>
<div class="card-body">
<p class="card-text"><span class="step">Step 3 </span> Visit the Trello board and start contributing to the website.</p>
</div>
</div>
</div>
<div>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>
</body>
<script type="text/javascript">
scrollToElement = (el, ms) => {
let speed = (ms) ? ms : 600;
$('html,body').animate({
scrollTop: ($(el).offset().top - 50)
}, speed);
}
$(function () {
$(document).scroll(function () {
var $nav = $(".navbar");
$nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height());
});
});
$(function() {
$(".typewriter").typewriter({
'speed':150
});
});
</script>
</html>