forked from hound77/jwoc-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandpage.html
70 lines (57 loc) · 2.81 KB
/
landpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/landcss.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>JWoC</title>
<link rel="apple-touch-icon" sizes="180x180" href="FAVICONS/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="FAVICONS/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="FAVICONS/favicon-16x16.png">
<link rel="manifest" href="FAVICONS/site.webmanifest">
<link rel="mask-icon" href="FAVICONS/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<header id="showcase">
<h1 class="h1-landpage">Welcome To The JWOC </h1>
<p class="op-src">Open Source Journey Starts Here...</p>
<br>
<section class="m-2">
<div>
<a href=# class="button" onclick="myFunction()"> Explore</a>
</div>
</section>
<!-- <div id="particles-js"></div> -->
<nav>
<ul>
<li><a href="https://www.facebook.com/jwoc2k20/"> <i class="fab fa-facebook-f" style="color: #026b27"></i></a></li>
<li><a href="https://www.linkedin.com/company/jwoc/"><i class="fab fa-linkedin-in" style="color: #026b27"></i></a></li>
<li><a href="https://github.com/JGEC-Winter-of-Code"><i class="fab fa-github fa-2x icon-cog" style="color:#026b27"></i></a></li>
</ul>
</nav>
<div class="body-particles">
<div id="wrapper">
</div>
</div>
<!-- particles.js container -->
<div id="particles-js"></div>
</header>
<script>
function myFunction() {
location.replace("index.html")
}
</script>
<script type="text/javascript" src="js/particles.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</body>
</html>