This is the first installment of the Web3D Screencast, web design development and deployment. Aimed at teaching basic to advanced web design.
I apologize for the loud keyboard mashing, i’m an aggressive typer. As well the quality looks terrible in non HD, i recommend going directly to the Vimeo website to view.
Index.html
<html> <head> <title>My Website</title> </head> <body> Hello internet! My name is kyle, i like to go on <a href="http://www.google.ca">google</a> <a href="index.html">Home</a> | <a href="about.html">About</a> <img src="http://www.google.ca/intl/en_ca/images/logo.gif" alt="Google Logo" /> <img src="logo.gif" alt="Google Logo" /> </body> </html>
About.html
<html> <head> <title>About</title> </head> <body> <a href="index.html">Home</a> | <a href="about.html">About</a> <img src="http://www.google.ca/intl/en_ca/images/logo.gif" alt="Google Logo" /> <img src="logo.gif" alt="Google Logo" /> </body> </html>
Advertisement