-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
150 lines (132 loc) · 3.86 KB
/
Copy pathcontact.html
File metadata and controls
150 lines (132 loc) · 3.86 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="images/favicon.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<title>ShadowDevs Babcock | Contact</title>
<style>
* {
font-family: 'Space Grotesk', sans-serif;
}
body {
background-color: #121212;
color: #fff;
}
.navbar-brand{
margin-top: 1.5rem;
}
#about {
background-color: #555555;
}
.NAV-TEXT {
font-size: 1.3rem;
}
.nav-active {
position: relative;
color: white;
text-decoration: none;
}
.nav-active::after {
content: '';
display: block;
width: 83%;
height: 2px;
background-color: white;
position: absolute;
bottom: 9px;
}
#hero h1 {
font-weight: 400;
line-height: 1.5;
margin-bottom: 2rem;
}
#hero .btn.btn-secondary {
border-radius: 0%;
border: none;
background-color: #555555;
margin-top: 1rem;
font-weight: bold;
font-size: 1.2rem;
margin-bottom: 3rem;
}
#hero {
height: 80vh;
padding-top: 1rem;
margin-bottom: 5rem;
}
#hero-image-container {
display: grid;
place-items: center;
}
#about p {
font-size: 1.3rem;
line-height: 1.5;
}
nav img{
height: 50px;
}
@media (max-width: 767px) {
.nav-active::after {
width: 25%;
}
#hero h1 {
font-size: 1.5rem;
}
#hero .btn.btn-secondary {
font-size: 1rem;
}
#hero {
padding-top: 0rem;
}
nav img{
height: 35px;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="/">
<img src="images/logo.png" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link NAV-TEXT" href="/" >Home</a></li>
<li class="nav-item"><a class="nav-link NAV-TEXT" href="/projects">Projects</a></li>
<li class="nav-item"><a class="nav-link NAV-TEXT" href="/community">Community (Events)</a></li>
<li class="nav-item"><a class="nav-link NAV-TEXT nav-active" href="/contact" style="color: white;">Contact</a></li>
</ul>
</div>
</nav>
</div>
<!-- Hero Section -->
<div id="hero" class="container mt-5">
<div class="row">
<div class="col-md-12">
<h1 class="display-4">COMING SOON</h1>
</div>
</div>
</div>
<!-- Footer Section -->
<footer class="text-center py-5">
<a href="https://github.com/Shadowdevsbu/" target="_blank">
<img src="images/github.png" alt="Github Logo" height="50" style="border-radius:10px"/>
</a>
<a href="https://www.linkedin.com/company/shadow-devs/" target="_blank">
<img src="images/linkedin.png" alt="LinkedIn Logo" height="50" style="border-radius:10px"/>
</a>
<hr style="width: 65%; background-color: #555555; border: 2px solid #555555" />
<p class="mt-3">© 2024 Shadow Developers Community</p>
</footer>
<!-- Bootstrap JS and other scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>