Agreed, w3schools will teach you the basics. Might be worth using something like dreamweaver using the design view to help you along.
Agreed, w3schools will teach you the basics. Might be worth using something like dreamweaver using the design view to help you along.
Basic html text are
<HTML>
<HEAD>
<TITLE>First sample web document </TITLE>
</HEAD>
<BODY>
Statements
</BODY>
</HTML>
For example <HTML>------</HTML> they can hold the text as well as other elements between two tags.
<HEAD>-tag is use to denote the heading of the web page. So ehatever is written in between <HEAD> and </head>.
<TITLE> is used to,give a title to the HTML document.
The <BODY> tag contains the contents of the web page.It is the area where most of the work is done.
You can use in notepad
The basic tags include <html>, <title>, <meta>, and <body>.
<html>
This tag is used to indicate that this is a HTML document. Most HTML documents should start and end with this tag.
<head>
This tag is used to indicate the header section of the HTML document, which typically includes the <title> and <meta> tags, and is not displayed in the main window of the browser.
<title>
This indicates the title of this HTML page. The title is what is displayed on the upper left corner of your browser when you view a web page.
Bookmarks