-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.1.html
89 lines (76 loc) · 2.93 KB
/
index.1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Patrick Yoho</title>
<style>
/* The CSS below is just for the Navbar */
#navbar {
/*background-color:lightgray;*/
text-align: left;
display: inline;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
border: 1px solid #555;
/*width: 200px;*/
background-color: #f1f1f1;
}
li {
display: inline;
color: #000;
padding: 8px 0 8px 16px;
text-decoration: none;
}
li a:hover {
background-color: #555;
color: white;
}
.active {
background-color: #4CAF50;
color: white;
}
/* END OF CSS JUST FOR NAVBAR */
body {
background-color:rgb(235, 242, 255);
}
#main {
background-color:rgb(61, 177, 255);
}
#footer {
background-color:gray;
}
</style>
</head>
<body>
<div id="navbar">
<ul>
<li><a href="" class="active">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 id="main">
<h1>Patrick Yoho</h1>
<p>
Founding Computer Science Teacher at Alpha Cindy Avitia
</p>
<img src="https://www.kasandbox.org/programming-images/food/croissant.png" alt="Croissants Image Placeholder">
<h2>Where I'm From</h2>
<p>
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.
</p>
<h2>What I Do Now</h2>
<p>
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.
</p>
</div>
<div id="footer">
</div>
</body>
</html>