Writing Web Pages in HTML

Rob Wall

StigmergicWeb

This document lives at http://www.stigmergicweb.org/presentations/html

Introductions - Me

Introductions - You

What is HTML?

Why learn HTML?

Tonight's Agenda

But always remember ...

Tools

A minimal HTML document

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>
<head>
<title>The title of the page</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>

<body>
<p>Hello World</p>
</body>

</html>

DOCTYPE

http-equiv

Block level tags

Example

Lists