forked from Real-Dev-Squad/website-welcome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (119 loc) · 4 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
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Real Dev Squad</title>
<link rel="stylesheet" type="text/css" href="./css/common/main.css" />
<link rel="stylesheet" type="text/css" href="./css/pages/navbar.css" />
<link rel="stylesheet" type="text/css" href="./css/pages/index.css" />
<link rel="icon" type="image/x-icon" href="./img/logos/favicon.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap"
rel="stylesheet"
/>
<meta name="theme-color" content="#e30062" />
</head>
<body>
<header>
<nav>
<!-- in case of small screens, show a dropdown -->
<input type="checkbox" id="nav-toggle" aria-controls="navbar toggle" />
<label for="nav-toggle" class="burger-menu"> ☰</label>
<ul class="menu">
<li>
<a class="nav-logo" href="https://realdevsquad.com/"
><img
class="nav-logo-img"
src="./img/logos/[email protected]"
alt="Real Dev Squad logo"
/></a>
<a class="nav-home" href="https://realdevsquad.com/">Home</a>
</li>
<li>
<a class="active" href="https://welcome.realdevsquad.com/"
>Welcome</a
>
</li>
<li><a href="https://www.realdevsquad.com/events.html">Events</a></li>
<li><a href="https://members.realdevsquad.com/">Members</a></li>
<li><a href="https://crypto.realdevsquad.com/">Crypto</a></li>
<li><a href="https://status.realdevsquad.com/">Status</a></li>
</ul>
<div class="login-btn">
<a
href="https://github.com/login/oauth/authorize?client_id=23c78f66ab7964e5ef97"
>
Login
</a>
</div>
</nav>
</header>
<main>
<div class="container">
<h1 class="welcome-title">Welcome to Real Dev Squad!🎉</h1>
<div class="cards-title">
<h3>Check out our Docs ⬇️</h3>
</div>
<div class="cards">
<a class="card" href="./faq.html">FAQ</a>
<a class="card" href="./discord.html">Discord</a>
<a class="card" href="./code-of-conduct.html">Code of Conduct</a>
</div>
<p class="info-note social-handles">
<a
href="https://instagram.com/realdevsquad"
target="_blank"
rel="nonreferrer"
>Instagram</a
>
<span class="link-seperators">|</span>
<a
href="https://www.linkedin.com/company/real-dev-squad/"
target="_blank"
rel="nonreferrer"
>
LinkedIn
</a>
<span class="link-seperators">|</span>
<a
href="https://twitter.com/realdevsquad"
target="_blank"
rel="nonreferrer"
>Twitter</a
>
<span class="link-seperators">|</span>
<a
href="https://www.facebook.com/Real-Dev-Squad-108713777585062"
target="_blank"
rel="nonreferrer"
>
Facebook
</a>
</p>
<h3 class="info-note">
To know how this page is getting developed, join our Discord Channel.
Contact one of our existing
<a href="https://members.realdevsquad.com/">members</a> for the
invitation link.
</h3>
</div>
</main>
<footer>
<p class="info-repo">
The contents of this website are deployed from this
<a
href="https://github.com/Real-Dev-Squad/website-welcome"
target="_blank"
rel="noopener noreferrer"
>
open sourced repo
</a>
</p>
</footer>
<script type="text/javascript" src="./js/login.js"></script>
</body>
</html>