Skip to content

Commit b8586ed

Browse files
committed
a little more cleanup on your turn.
1 parent 82350a6 commit b8586ed

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

days/005-008-html5/your-turn/README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,39 @@ Now you have seen the videos from this chapter, you're ready to start experiment
44

55
## Day 1: Watch the video lessons
66

7-
The watch the videos and keep track of where you might want to grab some examples. Remember you have everything you saw typed in the demos folder adjacent to this one if you need it.
7+
The watch the videos and keep track of where you might want to grab some examples. Remember you have everything you saw typed in the demos folder adjacent to this one if you need them.
88

99
## Days 2-3: Recreate Google's homepage
1010

11-
For your hands-on exercises during this chapter, you'll do something quick and easy: recreate Google! While I made fun of Yahoo! for being nothing but a glamorized Yellow Pages, the tech behind Google was truly revolutionary at the time.
11+
For your hands-on exercises during this chapter, you'll do something quick and easy: recreate Google!
1212

13-
But there web design was decidedly not special. Check it out in the way back machine (choose 1998 for your time frame):
13+
While I made fun of Yahoo! for being nothing but a glamorized Yellow Pages, the tech behind Google was truly revolutionary at the time.
14+
15+
But their web design was decidedly not special. Check it out in the way back machine (choose 1998 for your time frame):
1416

1517
[https://web.archive.org/web/19981202230410/http://www.google.com/](https://web.archive.org/web/19981202230410/http://www.google.com/)
1618

1719
Here's the design with a few visual notes on what is required for each part of the page (yes, tables make a comeback). No really, view the source, it's tables and the center tag even!
1820

1921
![](./google-1998-marked-up.png)
2022

21-
Your job is to recreate this. Feel free to save the image (right-click, save image as...) for your page. Then recreate the home page with forms and validation per the graphic above.
23+
Your job is to recreate this home page. Feel free to save the Google logo from the way back machine for your page (right-click, save image as...). Then recreate the home page with forms and validation per the graphic above.
2224

2325
If you are unfamiliar with HTML tables, here's a primer:
2426

2527
```
2628
<table border="0" width="90%">
2729
<tr>
2830
<td bgcolor="#EEEEEE">
29-
column details here...
31+
column details here...
32+
</td>
33+
<td bgcolor="#EEEEEE">
34+
column details here...
3035
</td>
31-
<td bgcolor="#EEEEEE">
32-
column details here...
33-
</td>
3436
<td bgcolor="#EEEEEE">
35-
column details here...
37+
column details here...
3638
</td>
39+
</tr>
3740
</table>
3841
```
3942

0 commit comments

Comments
 (0)