-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.html
126 lines (99 loc) · 3.27 KB
/
examples.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<!-- CODE CAMP EXAMPLES PAGE -->
<meta charset="utf-8">
<title>Code Reboot | Example Projects</title>
<!-- CSS Files -->
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" type="image/png" href="./img/logo.png">
<!-- Javascript Files -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./javascript/script.js"></script>
</head>
<body>
<!-- Header -->
<header class="desktop-nav">
<div class="container">
<div id="branding">
<a href="index.html" id="branding-link">
<img src="./img/logo.png">
<h1>Code Reboot</h1>
</a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="details.html">Details</a></li>
<li><a href="mailto:[email protected]?subject=I have a question about Code Reboot 2017...">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<!-- Mobile Nav -->
<header class="mobile-nav">
<div class="container">
<div id="branding">
<a href="index.html" class="branding-link">
<img src="./img/logo.png">
<h1>Code Reboot</h1>
</a>
</div>
<div id="toggle-menu">
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="container" id="dropdown">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="details.html">Details</a></li>
<li><a href="mailto:[email protected]?subject=I have a question about Code Reboot 2017...">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<!-- Banner -->
<section class="banner">
<div class="container">
<h1>Example Projects</h1>
</div>
</section>
<!-- Details -->
<section class="card">
<div class="container">
<h1>Text RPG Game</h1>
<p>Create a turn based text rpg that uses variables and control flow.</p>
<h1>Word Scramble</h1>
<p>Program a challenging puzzle game that utilizes Python's random library.</p>
<h1>Cash Register Program</h1>
<p>Build a program that uses math and operators to make a cash register program.</p>
<h1>Pig Latin Translator</h1>
<p>Make a translator for Pig Latin.</p>
<h1>Hangman</h1>
<p>Program the hangman puzzle game.</p>
<h1>Mad Libs Generator</h1>
<p>Program a mad libs game.</p>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<h3>Our Pages</h3>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="details.html">Details</a></li>
<li><a href="mailto:[email protected]?subject=I have a question about Code Reboot 2017...">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
<p>Code Reboot, Copyright © 2017 All Rights Reserved.</p>
</div>
</footer>
</body>
</html>