having a go at summarizing

March 14, 2007 at 10:26 pm (Web Design Sum.)

Html Challenges

Main makeup of Web Site

<html> </html>

The opening and closing tags on every page!!

 

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

using the doc type tag instead of the <html> tag tells the browser that you know what you are doing designing a page. Technically it means the browser will go into strict mode instead of quirks….

<link rel=”stylesheet” type=”text/css” href=”filename.css”/>

I always forget this tag so here it is, links your css doc with the html file allowing for files to be “styled”.

the tag/element(not sure which is correct terminology)

<link type=”text/css”> closing </link>

 

<body> </body>

is the tag that has the main content of the document that appears in the browser.

 

<head>

the part of the code displayed in the web heading

<title>

and the tag goes inside the <head> tag

 

<p>

is the paragraph tag

 

<em> italics tag

<strong> bold tag

 

<h1>

is the heading tag, largest then

 

<br />

line break tag

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”>

<html lang=”en”>

<body>

<head>

<title>This is meant to be the title</title>

</head>

<p>Wawawa this is the first paragraph yah yah yah

<br />and lets add a line break for good measure.</p>

</body>

</html>

Permalink 1 Comment

Hello world!

March 6, 2007 at 12:00 am (Thoughts)

Welcome to my page. This is going to be filled with all kinds of useful information about web design, video production, dream interpretation, and learning about life.

Woohoo lets get started

Permalink 1 Comment