-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (88 loc) · 4.92 KB
/
index.html
File metadata and controls
102 lines (88 loc) · 4.92 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<title>Free Code Camp Baltimore</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<link href="css/style.css" rel="stylesheet">
<script src="js/script.js"></script>
</head>
<body>
<!-- Header Section -->
<header>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><span class="highlight">Free Code Camp Baltimore</span></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
</header>
<!-- Main Content Section -->
<div class="container">
<a href="http://www.freecodecamp.com" target="_blank"><img class="img-logo" src="img/free-code-camp-logo.png"></a>
<div class="row">
<div class="col">
<h1>About Free Code Camp Baltimore</h1>
<span class="highlight-2">Free Code Camp Baltimore is the brain child of Grant and Eli, two intrepid web
developers who decided to form their own local Free Code Camp group in the Baltimore area.</span>
</div>
<div class="col">
<h1>How to Join </h1>
<span class="highlight-2">Membership is free and open to anyone! Just stop by one of our regular monthly
meetings, at Lotsa Stone Fired Pizza in Towson, on the second Monday of the month at 7pm. (Check out our <a
href="https://www.meetup.com/FreeCodeCamp-Baltimore/" target="_blank">meetup page</a> for more
details.)</span>
</div>
</div>
<div class="row">
<div class="col">
<h1>What is Free Code Camp?</h1>
<span class="highlight-2">Free Code Camp is a nonprofit organization that consists of an interactive learning
web platform, an online community forum, chat rooms, Medium publications, and local organizations that
intend to make learning web development accessible to anyone. <br /><br />Beginning with tutorials that
introduce students to HTML, CSS, and JavaScript, students progress to project assignments that they must
complete either alone or in pairs. Upon completion of all project tasks, students are partnered with other
nonprofits to build web applications, giving the students practical development experience.<br />(<em>taken
from</em> <a href="https://en.wikipedia.org/wiki/FreeCodeCamp" target="_blank">Wikipedia</a>)</span>
</div>
<div class="col">
<h1>Sign Up For Free Code Camp </h1>
<span class="highlight-2">To sign up for Free Code Camp, please visit their <a
href="http://www.freecodecamp.com" target="_blank">website</a>.</span>
</div>
</div>
</div>
</body>
</html>