-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
41 lines (41 loc) · 2.38 KB
/
about.html
File metadata and controls
41 lines (41 loc) · 2.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&family=Yanone+Kaffeesatz:wght@300&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="about.css">
<title>Hello, world!</title>
</head>
<body class="background">
<nav class="navbar navbar-expand-lg navbar-dark background">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">CODE_TOGETHER_CLUB</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">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resources.html">Resources</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html" tabindex="-1" aria-disabled="true">About Club</a>
</li>
</ul>
</div>
</div>
</nav>
<h1 class="text-white text-center pb-2 pt-2">About the Club:</h1>
<p class="text-white text-center fs-3">
The Code Together Club was founded on the idea that together we can all tackle technical interviews comfortably.
The club exists to provide a place where Berea College students of all majors can come and gain the tools to pass
technical interviews as well as tips on how you make sure your résumé makes you competitive in your search for internships.
</p>
</body>
</html>