-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
60 lines (60 loc) · 3.1 KB
/
resources.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
<!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/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="resources.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<title>Resources</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 active" href="resources.html">Resources</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html" tabindex="-1" aria-disabled="true">About Club</a>
</li>
</ul>
</div>
</div>
</nav>
<h1 class="text-center text-white pt-2">Resources:</h1>
<p class="text-white text-center">Feel free to use the below links to as resources to help you on your journey to life outside of
Berea College.
</p>
<div class="d-flex flex-row bd-highlight mb-3">
<div class="p-2 bd-highlight">
<a href="https://leetcode.com/" target="_blank">
<img src="images/leetcodelogo.png" class="img-fluid text-white" alt="Leet Code">
</a>
</div>
<div class="p-2 bd-highlight">
<a href="https://www.hackerrank.com/" target="_blank">
<img src="images/hackerranklogo.png" class="img-fluid text-white" alt="Hacker Rank">
</a>
</div>
<div class="p-2 bd-highlight">
<a href="https://codepath.org/" target="_blank">
<img src="images/codepathlogo.png" class="img-fluid text-white" alt="Code Path">
</a>
</div>
<div class="p-2 bd-highlight">
<a href="https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU" target="_blank">
<img src="images/blindlogo.png" class="img-fluid text-white" alt="Blind 75 LeetCode Questions">
</a>
</div>
</body>
</html>