Web3D Episode 1 – Basic HTML

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.