-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_template.html
151 lines (128 loc) · 3.97 KB
/
index_template.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
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
<!DOCTYPE html>
<html>
<head>
<!-- TODO: Update Title -->
<title>Mr. Yoho's Web Page</title>
<!-- Include the following stylesheet (controls sytle of navbar and footer) -->
<link rel="stylesheet" type="text/css" href="./css/style.css">
<!-- TODO: Change CSS colors and image so that it matches your desired theme -->
<style>
body {
font-family: Verdana;
background-color:#C2C2C2;
}
/* TODO: Make sure the height of your page is big enough */
.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;
/* TODO: Update the following image */
background-image: url("./img/home/south_sister.jpg");
background-repeat: no-repeat;
background-size: 100% 300px;
}
.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">
<!-- TODO: Ensure that your Navbar is correct -->
<li class="active"><a href="">Home</a></li>
<li><a href="./portfolio.html">Portfolio</a></li>
</ul>
</div>
<div class="main">
<div class="sidebar">
<ul class="sidebar-nav">
<!-- TODO: Update the recent projects -->
<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>
</ul>
</div>
<div class="main-page">
<div class="image-container"></div>
<!-- TODO: Update the page title -->
<h1 class="main-title">Mr. Yoho's Homepage</h1>
<!-- TODO: Update the left-panel and right-panel with info from your 90s website -->
<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>
<!-- TODO: Add anything you want to the footer -->
<div class="footer">
</div>
</div>
</body>
</html>