forked from BradleyCodeU/bradleycodeu.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (76 loc) · 2.1 KB
/
index.html
File metadata and controls
92 lines (76 loc) · 2.1 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<meta name="viewport" content="width=device-width" >
<script>
function openNav()
{
document.getElementById("nav").style.width = "500px";
}
function closeNav()
{
document.getElementById("nav").style.width = "0px"
}
</script>
<title>
Bradley CodeU
</title>
</head>
<body>
<div class="nav" id="nav">
<a class="icon" id="lines" onclick="closeNav()">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</a>
<ul>
<li><a href="#webd">Web Design</a></li>
<li><a href="#programming">Programming</a>
<li><a href="#apcs">AP Computer Science</a>
<li><a href="#gamed">Game Design</a>
</ul>
</div>
<div id="top">
<a class="icon" onclick="openNav()">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</a>
<div id="bar">
<div id="barl">
<a href="#webd">Web Design</a>
<a href="#programming">Programming</a>
</div>
<div id="barr">
<a href="#apcs">AP Computer Science</a>
<a href="#gamed">Game Design</a>
</div>
</div>
<div id="logo">
<center><h1><img src="images/bradleycodeu.png" alt="logo" height=100px></h1></center>
</div>
</div>
<div id="webd"></div>
<div id="webdh2"><h2><center>WEB DESIGN</center></h2></div>
<div id="webdtext">
<h1>What Will You Learn?</h1>
<p>In this course you will learn basic HTML, CSS, and Javascript.</p>
</div>
<div id="programming"></div>
<div id="progh2"><h2><center>PROGRAMMING</center></h2></div>
<div id="progtext">
<h1>some text about programming</h1>
</div>
<div id="gamed"></div>
<div id="gamedh2"><h2><center>GAME DESIGN</center></h2></div>
<div id="gametxt">
<h1>some text about game design</h1>
</div>
<div id="apcs"></div>
<div id="apcsh2"><h2><center>AP COMPUTER SCIENCE</center></h2></div>
<div id="apcstxt">
<h1>some text about computer science</h1>
</div>
</body>
</html>