I like to create my web pages in plain text editors. Here's a good template to start a new web page. I like the filename, "index.htm".
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Fun Work</title>
<style type="text/css">
/* <![CDATA[ */
h1{text-align:center;}
/* ]]> */
</style>
</head>
<body>
<h1>Fun Work</h1>
</body>
</html>
Comments
Post a Comment
You can use some HTML tags, such as <b>, <i>, and <a>.