|
1 | 1 | <!DOCTYPE html>
|
2 | 2 | <html>
|
3 | 3 | <head>
|
4 |
| - <!-- TODO Add your webpage title --> |
5 |
| - <title></title> |
| 4 | + <!-- TODO: Update your portfolio page title --> |
| 5 | + <title>Mr. Yoho - Portfolio</title> |
| 6 | + |
| 7 | + <!-- Linked Stylesheet (Controls Navbar and Footer) --> |
| 8 | + <link rel="stylesheet" type="text/css" href="./css/style.css"> |
6 | 9 | <style>
|
7 | 10 | /*Reset CSS below -- this gets rid of a lot of cross-browser bugs*/
|
8 | 11 | /************ DO NOT TOUCH ANY OF THE CSS BELOW ***************/
|
|
52 | 55 | }
|
53 | 56 |
|
54 | 57 | /************** END OF RESET CSS **************/
|
55 |
| - |
56 |
| - |
57 | 58 | </style>
|
| 59 | + |
| 60 | + <!-- TODO: Change the CSS colors below so that it fits your website theme --> |
58 | 61 | <style type="text/css" media="screen">
|
59 | 62 | body {
|
60 | 63 | background-color: gray;
|
|
63 | 66 | font-family: Verdana;
|
64 | 67 | }
|
65 | 68 |
|
66 |
| - /* PORTFOLIO GRID CSS BEGIN */ |
67 | 69 | .grid {
|
68 | 70 | background-color: white;
|
69 | 71 | border:1px solid black;
|
70 | 72 | display: inline-block;
|
71 | 73 | margin:8px;
|
72 | 74 | color:black;
|
73 | 75 | }
|
74 |
| - |
| 76 | + |
75 | 77 | #carousel {
|
76 | 78 | background-color: #ff6600;
|
77 |
| - margin:10px; |
78 | 79 | padding:15px;
|
79 | 80 | }
|
80 |
| - /* END PORTFOLIO GRID CSS */ |
81 |
| - |
82 |
| - /* NAVBAR CSS BEGIN */ |
83 |
| - .nav li { |
84 |
| - line-height: 40px; |
85 |
| - padding:20px; |
86 |
| - list-style: none; |
87 |
| - display: inline-block; |
88 |
| - background-color: white; |
89 |
| - } |
90 | 81 |
|
91 |
| - /* Select all child links in a nav element */ |
92 |
| - .nav a { |
93 |
| - text-decoration: none; |
94 |
| - } |
95 |
| - |
96 |
| - .navbar-outside { |
97 |
| - display:block; |
98 |
| - background-color: #313732; |
99 |
| - height:80px; |
100 |
| - } |
101 |
| - |
102 |
| - .navbar { |
103 |
| - min-width:600px; |
104 |
| - max-width:800px; |
105 |
| - margin: 0 auto; |
106 |
| - } |
107 |
| - |
108 |
| - .navigation li { |
109 |
| - padding: 30px 15px; |
110 |
| - list-style: none; |
111 |
| - text-decoration: none; |
112 |
| - float:left; |
113 |
| - height: 20px; |
114 |
| - } |
115 | 82 |
|
116 |
| - .navigation li a { |
117 |
| - text-decoration: none; |
118 |
| - color:#FFFFFF; |
119 |
| - } |
120 |
| - |
121 |
| - .navigation li:hover { |
122 |
| - background-color: #F26101; |
123 |
| - } |
124 |
| - |
125 |
| - .active { |
126 |
| - background-color: #4CAF50; |
127 |
| - color: white; |
| 83 | + body { |
| 84 | + font-family: Verdana; |
| 85 | + background-color:#C2C2C2; |
128 | 86 | }
|
129 |
| - /* END NAVBAR CSS */ |
130 |
| - |
131 | 87 |
|
132 | 88 | .main {
|
133 | 89 | display:block;
|
134 | 90 | clear: left;
|
135 | 91 | min-width: 600px;
|
136 | 92 | max-width: 800px;
|
137 |
| - height:500px; |
| 93 | + height:100%; |
138 | 94 | margin:0 auto;
|
139 | 95 | }
|
140 | 96 |
|
|
154 | 110 | height:100%;
|
155 | 111 | background-color: #059D8E;
|
156 | 112 | }
|
157 |
| - |
158 |
| - .footer{ |
159 |
| - width:100%; |
160 |
| - background-color: #313732; |
161 |
| - height:50px; |
162 |
| - clear:both; |
163 |
| - } |
164 |
| - |
165 |
| - |
| 113 | + |
166 | 114 | .main-title {
|
167 | 115 | margin: 10px 15px;
|
168 | 116 | font-size: 30px;
|
|
195 | 143 | </style>
|
196 | 144 | </head>
|
197 | 145 | <body>
|
198 |
| - <div class="navbar-outside"> |
199 | 146 | <div class="navbar">
|
200 |
| - <ul class="navigation"> |
201 |
| - <li><a href="index.html" >Home</a></li> |
202 |
| - <li><a href="contact.html">Contact</a></a></li> |
203 |
| - <li><a href="">About</a></li> |
204 |
| - <li class="active"><a href="portfolio.html">Portfolio</a></li> |
205 |
| - <li><a href="">Social Media</a></li> |
206 |
| - <li><a href="blog.html">Blog</a></li> |
207 |
| - </ul> |
| 147 | + <ul class="navigation"> |
| 148 | + <!-- TODO: Ensure that your Navbar is correct --> |
| 149 | + <li><a href="./index.html">Home</a></li> |
| 150 | + <li class="active"><a href="">Portfolio</a></li> |
| 151 | + </ul> |
208 | 152 | </div>
|
209 |
| - </div> |
210 | 153 |
|
211 | 154 | <div class="main">
|
212 | 155 | <div id="carousel">
|
213 | 156 | <h2>My Work</h2>
|
214 |
| - <!-- The div below shows an Embedded Scratch Project --> |
215 |
| - <div class="grid"> |
216 |
| - <iframe allowtransparency="true" width="350" height="300" src="//scratch.mit.edu/projects/embed/90479001/?autostart=false" frameborder="0" allowfullscreen></iframe> |
217 |
| - <p>Maze Game</p> |
218 |
| - </div> |
219 |
| - |
220 |
| - <!-- The div below is a screenshot of a document that you can click on to get to the document--> |
221 |
| - <div class="grid"> |
222 |
| - <a href="https://www.khanacademy.org/computer-programming/spin-off-of-project-shooting-star/6482264175542272" target="_blank"><img src="./img/portfolio/project_shooting_star.png" alt="Project Shooting Star" width="350"></a> |
223 |
| - <p>Project Shooting Star</p> |
224 |
| - </div> |
225 |
| - |
| 157 | + <!-- The div below shows an Embedded Scratch Project --> |
| 158 | + <!-- TODO: Update for your Maze Game --> |
| 159 | + <div class="grid"> |
| 160 | + <iframe allowtransparency="true" width="350" height="300" src="//scratch.mit.edu/projects/embed/90479001/?autostart=false" frameborder="0" allowfullscreen></iframe> |
| 161 | + <p><a href="https://scratch.mit.edu/projects/90479001/" target="_blank">Maze Game</a></p> |
226 | 162 | </div>
|
| 163 | + |
| 164 | + <!-- The div below is a screenshot of a document that you can click on to get to the document--> |
| 165 | + <!-- TODO: Update for your Project: Shooting Star --> |
| 166 | + <div class="grid"> |
| 167 | + <a href="https://www.khanacademy.org/computer-programming/spin-off-of-project-shooting-star/6482264175542272" target="_blank"><img src="./img/portfolio/project_shooting_star.png" alt="Project Shooting Star" width="350"></a> |
| 168 | + <p><a href="https://www.khanacademy.org/computer-programming/spin-off-of-project-shooting-star/6482264175542272" target="_blank">Project Shooting Star</a></p> |
| 169 | + </div> |
| 170 | + |
| 171 | + <!-- The div below is an example of a linked Google Doc --> |
| 172 | + <!-- TODO: Update for your Algebra Challenge 2 (The fish tank one) --> |
| 173 | + <div class="grid"> |
| 174 | + <iframe src="https://docs.google.com/document/d/1ZTqoVsyfyCs3ZU6sGfs6fJ4j9kXUNjJo_tBRSxe1rZs/pub?embedded=true" height=300 width=350></iframe> |
| 175 | + <p><a href="https://docs.google.com/document/d/1ZTqoVsyfyCs3ZU6sGfs6fJ4j9kXUNjJo_tBRSxe1rZs/pub" target="_blank">Live Website Challenge</a></p> |
| 176 | + </div> |
| 177 | + |
| 178 | + <!-- TODO: Add more div class="grid" elements for your other Khan Academy Projects and Algebra Challenges --> |
227 | 179 | </div>
|
228 |
| - |
| 180 | + </div> |
| 181 | + |
| 182 | + <div class="footer"> |
229 | 183 | </div>
|
230 | 184 |
|
231 | 185 |
|
|
0 commit comments