Instruction
1
Examine the overall structure of the sites. The Html markup is the cornerstone, despite the fact that many of the robots allow designers to create pages without touching this topic. And yet, to write a good website from scratch, you need to understand the principles of its construction.

Any web page includes the following elements:

<html>
the <head> (literally – the head of the site. Here prescribed styles and other attributes, which will be subject to all other elements)
<title> </title> (tab title)
</head>
< / body> </body> (here is placed the body of the page, i.e. text, drawings, videos, tables. In short, everything that the user sees in the browser page)
</html>
2
Understand the syntax of html: what are the tags, their attributes, how they are used, what are the consequences of their incorrect use. The Foundation of any website is a table. Can you clearly see in the Google Chrome browser is enough with the left mouse button to highlight any part of any web page. Therefore, the first priority should be to familiarize yourself with features of tables and inserting images.
3
To train better in practice. To do this, create your first page. Here's how:

- open the standard program "Notepad";
- click "Save as" in the field "file Name", specify the name of the document, and a point list instead of a txt extension html.

You will receive a full web page. But all the items are written only in Notepad format. To move it use the "Open with". To see the results of another experiment, after making changes to a text document you must use a bunch of "Save" -- "Update."
4
You will learn how to work with images. For this you will need Adobe Photoshop. If not – install. The fact that not all of the images saved on the computer can be placed on created with Notepad website; before that they need to process. Open the image in a graphics program and then click "Save for web". If done correctly, you should see the Images folder used for storing pictures. To insert the artwork to the site, use the tag <img src="images\1.gif"> where images\1.gif is the path to the image.
5
Study the structure of the sites to which you would like to navigate. For example, in the browser Mazila Firefox clicking right mouse button a menu appears, which has the team "page Source". Click on it and you will see the markup of a web document.
6
Constantly enrich your knowledge base. For web development written many books, enough information on the Internet, there are many courses through which you can get all the necessary information.
7
Get to work with cms-software they are especially useful for creating large resources with the need for constant updates.
8
Engage in the study of other programming languages: Java, C, C++, Delphi and others. With their help, you will learn how to create different opportunities and resources.