-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_final.html
More file actions
165 lines (138 loc) · 4.43 KB
/
index_final.html
File metadata and controls
165 lines (138 loc) · 4.43 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html>
<head>
<title>Mr. Yoho's Web Page</title>
<!-- Code Includes for JS-->
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="./js/codecademy_name/alphabet.js"></script>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<style>
body {
font-family: Verdana;
background-color:#C2C2C2;
}
.main {
clear: left;
min-width: 600px;
max-width: 800px;
height:650px;
margin:0 auto;
}
.main-page{
display: block;
float:right;
background-color:#E0E0E0;
height:100%;
width:75%;
box-sizing:border-box;
}
.sidebar {
box-sizing:border-box;
padding:10px;
float:left;
width:25%;
height:100%;
background-color: #059D8E;
}
.sidebar-nav{
margin: 15px 0px;
color:#FFFFFF;
}
.sidebar li {
margin: 20px 5px 0px;
}
.sidebar ul ul li{
margin: 10px 15px 0px;
font-size:0.8em;
}
.sidebar ul ul li a{
text-decoration: none;
color: #FFFFFF;
}
.sidebar ul ul li a:hover{
color: #F26101;
}
.image-container {
height:300px;
width:100%;
position: relative;
background-image: url("./img/home/south_sister.jpg");
background-color: rgba(255, 255, 255, .6);
background-repeat: no-repeat;
background-size: 100%;
background-blend-mode: color;
}
.main-title {
margin: 10px 15px;
font-size: 30px;
}
.left-panel{
box-sizing: border-box;
width: 50%;
float:left;
padding:20px;
}
.right-panel{
box-sizing: border-box;
width: 50%;
float:left;
padding:20px;
}
.sub-title {
text-align: center;
}
.text-info {
font-size: 0.8em;
margin: 20px;
}
</style>
</head>
<body>
<div class="navbar">
<ul class="navigation">
<li class="active"><a href="">Home</a></li>
<li><a href="./contact.html">Contact</a></a></li>
<li><a href="">About</a></li>
<li><a href="./portfolio.html">Portfolio</a></li>
<li><a href="">Social Media</a></li>
<li><a href="./blog.html">Blog</a></li>
</ul>
</div>
<div class="main">
<div class="sidebar">
<ul class="sidebar-nav">
<li><strong>Recent Projects</strong></li>
<ul>
<li><a href="./portfolio.html">Shooting Star</a></li>
<li><a href="./portfolio.html">Maze Game</a></li>
</ul>
<li><strong>Recent Blog Posts</strong></li>
<ul>
<li><a href="#">August 2015</a></li>
<li><a href="#">July 2015</a></li>
<li><a href="#">June 2015</a></li>
</ul>
</ul>
</div>
<div class="main-page">
<div class="image-container">
<!-- Code to Incorporate Codecademy Name Thing -->
<canvas id="myCanvas"></canvas>
<script type="text/javascript" src="./js/codecademy_name/bubbles.js"></script>
<script type="text/javascript" src="./js/codecademy_name/main.js"></script>
</div>
<h1 class="main-title">Mr. Yoho's Homepage</h1>
<div class="left-panel">
<h2 class="sub-title">My Background</h2>
<p class="text-info">Born and raised in Colorado and Oregon. Majored in computer science, French, and engineering physics at Whitworth University. Studied abroad at Institut National de Sciences Appliques de Lyon in Lyon France and traveled Europe extensively. Lived, taught, and coached teachers in urban and rural Mississippi.
</div>
<div class="right-panel">
<h2 class="sub-title">What I Do Now</h2>
<p class="text-info">I currently serve as the founding computer science teacher at Alpha Cindy Avitia High School, where I have the joy of working with students from all over East San Jose to discover more about computer science. I also find time to mountain bike, spend time with close friends, and occassionally play some guitar.
</div>
</div>
<div class="footer">
</div>
</div>
</body>
</html>