This is the second episode of the Web3D Screencast, web design development and deployment. Aimed at teaching basic to advanced web design.
In this episode I try to get you started with your first xHTML website.
I always recommend to watch the video on the vimeo page for better quality!
Web3D Screencast – Ep02 – Baby xHTML from Kyle Smyth on Vimeo.
Index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!-- THis is the index page--> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>My Website</title> </head> <body> <div> <!-- <p>Hello internet!</p> --> <br /> <p>My name is kyle, i like to go on <a href="http://www.google.ca">google</a></p> <br /> <p> <a href="index.html">Home</a> | <a href="about.html">About</a> </p> <br /> <p> <img src="http://www.google.ca/intl/en_ca/images/logo.gif" alt="Google Logo" /> <br /> <img src="logo.gif" alt="Google Logo" /> </p> </div> </body> </html>
About.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>About</title> </head> <body> <p> <a href="index.html">Home</a> | <a href="about.html">About</a> </p> <br /> <p> <img src="http://www.google.ca/intl/en_ca/images/logo.gif" alt="Google Logo" /> <br /> <img src="logo.gif" alt="Google Logo" /> </p> </body> </html>
Advertisement