-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfaq.html
58 lines (53 loc) · 2.12 KB
/
faq.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
<html>
<head>
<title>FAQ</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="app.css"/>
</head>
<body>
<header class="navbar navbar-inverse" role="banner">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">Coder Dojo Indy</a>
</div>
<nav class="collapse navbar-collapse" role="navigation">
<ul class="nav navbar-nav">
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="programs.html">Programs</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
</ul>
</nav>
</div>
</header>
<div id="faq-wrapper">
<div class="faq-question">
Q: Should I bring food?
</div>
<div class="faq-answer">
A: Pizza and water is provided but you can bring your own.
</div>
<div class="faq-question">
Q: How much does it cost?
</div>
<div class="faq-answer">A: It's free thanks to our great sponsors.</div>
<div class="faq-question">Q: Do I need my own computer?</div>
<div class="faq-answer"> A: Laptops are availible but it's helpful if you have your own computer so you can work on things in between dojo meetings. </div>
<div class="faq-question"> Q: What kind of programming does CoderDojo do? </div>
<div class="faq-answer">
A: Mainly <a href="http://scratch.mit.edu/">Scratch</a>, JavaScript on <a href="http://www.khanacademy.org/cs">Khan Academy</a>, and <span style="font-family: serif; color: #008000; font-size: 24px; font-family: Papyrus">HTML</span> on <a href="http://www.codecademy.com">Codecademy</a>.
</div>
<div class="faq-question">Q: I have a special project I want to work on.</div>
<div class="faq-answer"> A: That's great! You can come as early as 10:30. </div>
<div class="faq-question">Q: Will you answer this question with "no"?</div>
<div class="faq-answer">A: Maybe.</div>
<div class="faq-question">Q: What is the answer to Life, the Universe, and Everything?</div>
<div class="faq-answer">A: 42.</div>
</div>
</body>
</html>