This repository was archived by the owner on Jun 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbadges.php
More file actions
51 lines (49 loc) · 1.6 KB
/
badges.php
File metadata and controls
51 lines (49 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<title>Badges</title>
<meta charset="UTF-8">
<link rel="shortcut icon" href="photos/smalllogo.png" type="image/png">
<meta name="description"
content="The Badges page for Brandon Spears, a web designer
in the Game Programming and Web Applications Class at the Miami Valley Career Technology Center.">
<meta name="keywords"
content="MVCTC, GW, Miami Valley CTC, Web Applications, Game Programming,
Student Portfolio work of Brandon Spears">
<meta name="author" content="Brandon Spears">
<meta name="robots" content="index,follow" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css"
media="screen and (max-width: 720px)" href="css/mobileStyleSheet.css">
<link rel="stylesheet" type="text/css"
media="screen and (min-width: 721px)" href="css/styleSheet.css" />
<link rel="stylesheet" href="css/printstyles.css" type="text/css"
media="print" />
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "75%";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
</head>
<body>
<div class="container">
<?php
require ("inc/nav.php");
?>
<article>
<h2>ERROR</h2>
<p>I am sorry but the current page is still being worked on. Please
come back at a later time and it might be here (no promises).</p>
</article>
<div class="wrapimage">
<img src="photos/gears.gif" class="scaleimage" alt="gears gif">
</div>
<?php
require ("inc/footer.php");
?>
</div>
</body>
</html>