forked from Opentek-Org/hacktoberfest-practice-add-yourself
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (115 loc) · 5.8 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link href="style.css" rel="stylesheet" crossorigin="anonymous">
<title>Add Yourself</title>
<link rel="icon" type="image/png" sizes="192x192" href="Opentek.png">
</head>
<body>
<!-- <div class="discord-logo">
<div class="wrapper-buttons">
<button class="blue-button" onclick="window.location.href='https://discord.gg/9qyr4Mdc3Y'" >Join Discord</button>
</div>
</div> -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand me-2" href="#">
<img src="Opentek.png" height="60" width="60" alt="" loading="lazy"
style="margin-top: -1px; margin-left:40px;" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
</ul>
<ul class="mb-2 mb-lg-0">
<a class="btn btn-dark px-3" style="margin-right: 10px;"
href="https://github.com/Opentek-Org/hacktoberfest-practice-add-yourself" target="_blank"
role="button"><i class="fab fa-github"></i></a>
<a class="btn btn-dark px-3" style="margin-right: 10px;background-color: #38b9ff;"
href="https://twitter.com/opentekorg" target="_blank"
role="button" ><i class="fab fa-twitter"></i></a>
<a class="btn btn-dark px-3" href="https://www.linkedin.com/company/opentekorg/" target="_blank"
style="background-color: #0077b5;" role="button"><i class="fab fa-linkedin-in"></i></a>
</ul>
<ul>
</ul>
</div>
</div>
</nav>
<h1 class="mt-5 text-center" style="color: white;margin-bottom: 50px;"><strong>Hacktoberfest 2021</strong> Practice
Contributors</h1>
<div class="container" id="rowdy">
</div>
<footer class="bg-light text-dark mt-5">
<div class="container">
<div class="text-center">
<span class="copyright quick-links text-dark">Copyright © Opentek
<script>document.write(new Date().getFullYear())</script>
</span>
<br>
Open Sourced by <a style="text-decoration: none;" href="https://github.com/Opentek-Org"
target="_blank" rel="noopener noreferrer">Opentek</a>
</div>
<!-- <div class="row text-center text-dark">
<div class="col-md-4 box">
<span class="copyright quick-links text-dark">Copyright © Opentek
<script>document.write(new Date().getFullYear())</script>
</span>
</div>
<div class="col-md-4 ">
<ul class="list-inline ">
<li class="list-inline-item">
<div class="discord-logo">
<div class="wrapper-buttons">
<button class="blue-button" onclick="window.location.href='https://discord.gg/9qyr4Mdc3Y'" >Join Discord</button>
</div>
</div>
</li>
</ul>
</div>
<div class="col-md-4 box">
<ul class="list-inline quick-links">
<li class="list-inline-item">
Open Sourced by <a style="text-decoration: none;" href="https://github.com/Opentek-Org"
target="_blank" rel="noopener noreferrer">Opentek</a>
</li>
</ul>
</div>
</div> -->
</div>
</footer>
<div id="discord-shoutout" class="discord-shoutout">
<div class="shoutout-inner">
<img src="https://seeklogo.com/images/D/discord-color-logo-E5E6DFEF80-seeklogo.com.png">
<span class="title">Hey there!</span>
<p>
Fancy having a chat?
</p>
<p>
We're currently online on Discord!
</p>
<div class="discord-buttons">
<a class="discord-button discord-primary" href="https://discord.gg/9qyr4Mdc3Y" target="_blank">Join our server</a>
<button class="discord-button discord-secondary" onclick="hide()">Close</button>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>