You can use a web design software with which to create a website quickly but to understand and apply effectively I recommend you start notepad.
A basic HTML document is structured as follows:
<HTML>
<HEAD>
<meta http-equiv = "Content-Type" content = "text / html; charset = utf-8" />
<TITLE> Text presentation </ TITLE>
</ HEAD>
<BODY>
<h1> About Us </ h1>
<p> The text contains article content </ p>
<p> The text contains article content 2 </ p>
</ BODY>
</ HTML>
A pair of html tags are meant as follows:
<name can> Content </ name tag>, although there are some other defined tags such as meta tag <meta content tag />, <br />
In this example, there are card pairs follows:
HTML: the pair of cards are used to validate a document as an HTML document.
<meta http-equiv = "Content-Type" content = "text / html; charset = utf-8" />: identification documents formatted with utf-8.
HEAD: is used to determine the beginning of the document.
TITLE: Pair this card can only be used in the preamble of the document, it must be in the HEAD tag.
BODY: This card is used to determine the content of the article.
H1: Card format titles, usually a programmer will put the title into this format the card pairs.
P: It is used to format text.
BR: This card has no corresponding end tag (</BR>), it works move on to a new line.
B: It is used to format text in bold.
i: is used to format text in italics.
u Used to format text was nghach below.
UL, LI: The pair can combine to conventional list format:
<UL>
<li> The first item </ li>
<li> The second item </ li>
</ UL>
In this article we only learn some basic card as above, the following article will explore how to format beautiful article.
Okay, now I will design a website to introduce web design firms by Van An of what I have presented above. open your notepad program and enter the following html:
<HTML>
<HEAD>
<meta http-equiv = "Content-Type" content = "text / html; charset = utf-8" />
<TITLE> Web Design - Design A Website </ TITLE>
</ HEAD>
<BODY>
<h1> Web Design Company Van An Thanh </ h1>
<p> We Aweb.vn born to website design. With business method "Dedicated Customer Dedication to work" is the most important factor is set as Aweb business methods, is a solid foundation for the development of higher, further and around the World world. </ p>
<p> Along with a technical team of young and enthusiastic, proficient programmers are always searching to learn relentless efforts and contribution of experienced professionals in the IT field has developed to create a complete NVA CMS technology effectively to ensure maximum security of the website to reach international standards, the absolute license, compatible with all browsers, friendly to search engines, not limited features, easy expansion, resource footprint, page loading speed is very fast ... meet the elements to create a website absolute standard. </ p>
<b> The advantages of the product - We service: </ b>
<ul>
<li> right website design standards. </ li>
<li> You are not losing a contract cost if not satisfied with the products and services of Aweb. </ li>
<li> <b> <i> 10% Bonus for Customers already have websites. </ i> </ b> </ li>
<li> Get 1 international domains. </ li>
<li> Warranty website indefinitely. </ li>
<li> Always have policies customer support after online sites (<b> Get 1 month care use web; Consulting, web promotion support during the website online, and investment incentives enthusiasm to offer you advice needs to expand the website; ... </ b>) </ li>
<li> Webmaster easy, simple multilingual every request of our customers. </ li>
<li> Focus max, committed and dedicated to each product for each customer. </ li>
<br />
<br />
<b> <i> website design company ChuSun to thank customers for your interest and support in recent years we! </ i> </ b>
</ BODY>
</ HTML>