-
Notifications
You must be signed in to change notification settings - Fork 0
/
about us.html
111 lines (105 loc) · 4.16 KB
/
about us.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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="About Remote Coders Community">
<meta name="author" content="Tanmay Tiwari, Remote Coders">
<title>About Us - Remote Coders</title>
<!-- Bootstrap core CSS -->
<link href="CSS/style.css" rel="stylesheet">
<link rel="shortcut icon" href="res/web_icon.png">
<!-- Custom styles for this template -->
<style>
body, html {
/* height: 100%; */
margin: 0;
display: flex;
align-items: center;
justify-content: center;
/* background: linear-gradient(45deg, #121212, #282828); */
color: #fff;
font-family: 'Arial', sans-serif;
}
.cover-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
width: 100%;
padding: 2rem;
text-align: center;
}
header {
margin-bottom: 3rem;
}
h1 {
font-size: 3.5rem;
font-weight: bold;
text-transform: uppercase;
background: -webkit-linear-gradient(45deg, #ff007a, #4ff2c8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradientMove 3s ease infinite;
}
@keyframes gradientMove {
0% { background-position: 0 50%; }
100% { background-position: 100% 50%; }
}
.nav-link {
color: #fff;
font-size: 1.2rem;
margin-right: 1rem;
transition: all 0.3s ease;
}
.nav-link:hover {
color: #4ff2c8;
text-shadow: 0 0 10px #4ff2c8;
}
.div3 {
max-width: 700px;
background: rgba(0, 0, 0, 0.7);
padding: 20px;
border-radius: 15px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
font-size: 1.1rem;
}
.div3 b {
color: #4ff2c8;
}
footer {
margin-top: 3rem;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="cover-container">
<header class="mb-auto">
<div class="nav-container">
<h3 class="float-md-start mb-0">Remote Coders</h3>
<button class="hamburger" onclick="toggleMenu()">☰</button> <!-- Hamburger icon -->
<nav class="nav nav-masthead justify-content-center float-md-end" id="navLinks">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="blogs.html">Blogs</a>
<a class="nav-link" href="tryhackme.html">THM Walkthroughs</a>
<!-- <a class="nav-link" href="partners.html">Partners</a> -->
<!-- <a class="nav-link" href="supporters.html">Supporters</a> -->
<a class="nav-link" href="contact us.html">Contact Us</a>
<a class="nav-link active" aria-current="page" href="about us.html">About Us</a>
</nav>
</div>
</header>
<h1>About Us</h1>
<div class="div3">
<p><b>Remote Coders</b> is a thriving community for hackers and programmers. My name is Tanmay Tiwari, the proud owner and founder of this community.</p>
<p>I created this space to bring together hackers and developers where they can collaborate, solve challenges, and help secure the digital world.</p>
<p>With over 150+ members to date, our mission is to make the world a safer place by sharing knowledge and solving problems together.</p>
</div>
<footer class="mt-auto text-white-50">
© 2022 Remote Coders - A Community for Hackers and Programmers <br> Developed by Tanmay Tiwari
</footer>
</div>
</body>
</html>