Instruction
1
First, you need to make sure that the result is displayed in the desired format. Open Notepad and click "Save as", in the opened window in the field "file Name" enter the name of the document and through the list the extension html. For example, "Moiwebsite.html". Click "Save".
2
Close Notepad, in the place of the created document should appear in the browser icon. If not, then probably you made a mistake in the format. Save again.
3
Open the program and insert in it the backbone of a future page.<html> <head><title> </title> </head> <body> </body></html>
4
The basic structure of any websiteand same. All the components are concentrated between the tags "html" and "/html". It is written in head the styles that will be applied to the entire document and specify the attributes to display the page in the browser. For example, title – the title tab, and using the tag <link rel="shortcut icon" href="address of picture"> inserts a small icon to the left of the tab name.
5
Body – the body of the page, the most important element. Between the corresponding tags are set to all visible attributes page: a background image or background color, text, images, tables, links, etc.
6
Consider the structure of the websiteand, previously, it is desirable to portray on a sheet of paper in the form of a diagram. Calculate the space under the cap, text, images, menu items, etc.
7
Any web page is the table the number of rows and columns, which depends on the complexity of the project. Otherwise it will simply fail to bind elements to a specific place on the screen. And thanks to the table for each of them creates its own cell, inside which you can use attributes align.
8
To visualize the results of the experiments in "Notepad" use the command "Save" in the browser "Refresh". Use this link after each change, especially if you have relatively little experience of creating web pages. This will allow you to notice the error and fix it.