forked from CoderFoundry/JSCodingChallenges1-Student
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 2.3 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
<!doctype html>
<html lang="en">
<head>
<title>CF Javascript Coding Challenges</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.typekit.net/lxy8kpx.css">
<link href="/css/site.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-xl navbar-dark fixed-top bg-dark" id="navmenu">
</nav>
<main class="" id="mainHome">
<div class="container-fluid h-100 px-5">
<div class="row">
<div class="col-12 col-md-6 mt-2 mt-md-0">
<h1>JS Coding Challenges</h1>
<p class="lead">Build these 10 coding challenges to get ready for your next tech interview.</p>
<p class="lead">
These challenges are some of the most common whiteboard challenges that our students face. First
try and build them. If you still need some help we have built a FREE course on <a
href="https://learn.coderfoundry.com">learn.coderfoundry.com.</a>
</p>
<p class="lead">Sign up for your FREE account today to get this course!</p>
<div class="text-center mt-5">
<div>Powered By</div>
<img src="/img/CF_Logo_BO.png" width="250">
</div>
</div>
<div class="col-12 col-md-6 order-first order-md-last">
<img src="/img/JsChallenge.png" class="img-fluid" id="jslogo">
</div>
</div>
</main>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous">
</script>
<script src="/js/menu.js"></script>
<script>
window.addEventListener("load", getmenu(0));
</script>
</body>
</html>