- Notepad or some other text editor.
- Know what type of webpage you are going to create, e.
g.
HTML, php, asp. - You need have the will power to learn some basic HTML coding.
- When using HTML tags you need to remember what you open has to be closed.
- All Tags are in lower casing e.
g.
is correct but isn't. - When linking to files or different URL address to place the link inside speech marks.
So lets start on the fun part now, creating the web page.
To create the page that allows people to view it you have to start you page with this coding
As stated before what tags you open you have to close so at the end of your web page you have to have this code.
g.
my heading Once you learn that then creating a web page becomes a lot easier.
Now for the more interesting part, when you have your main HTML and body tags set up you can start formatting the layout of your page and inserting images.
You see the code before that uses the tags strong and h1 these are text/word changing tags the strong tag makes the text bold and the u tag underlines the text.
So if you put together the code we have used so far you page will look like
This is very simple stuff it can help you learn a lot more when you understand how the tagging works and how to layout your HTML coding.
If you are going to create PHP files then you will still need the HTML tags in but then when you start to use your PHP code you will need to open and close the tags like other normal tags but PHP is different slightly in that when you open the tag you don't put brackets around it e.
g.
So if you wanted to create a simple php web page then your code would look like this
The only thing that would be changing is the file name of the pages, the plain HTML page name would be index.
html and the PHP coded page will have the fail name index.
php this is to tell the web browser what type of file is being viewed.
If you don't change the file name for the PHP coding page the PHP scripts that you use will not be processed and wont work.