Basic web page structure tags
<html> </html> – this is the opening and closing of a basic web page
<head> </head> – this is your web page heading
<title> </title> – the title shows up at the top of the browser window
<body> </body> – your page content will go between the body tags
Basic formatting html tags
<b> bold </b> – this tag makes any text between it bold
<i> italics </i> – this tag makes any text between it italics
<p> </p> – a paragraph tag, it creates a blank line between text
<br /> – this is a line break *does not have a closing tag
<center>centers text or image</center>
<a href=”http://www.mommamuse.com”>MommaMuse</a> this tag creates a link to another website, also referred to a hyperlink
<img src=/> this tag does not have a closing tag. It is used to display an image.
A basic web page html layout may look like this:
<html>
<head>
<title>The Title of Your Page </title>
</head>
<body>
The content of your page will go here.
</body>
</html>
