What is HTML? (Hypertext Markup Language)
- It is a sensible set of requirements that constitues the overall look of a web papers and the details included. The requirements are published in "<" (open bracket) and ">" (closed bracket), although they are not really supports, that is what they are known as and look like: < >.
Example:
<BODY> or <FONT>
- Most components (also known as tags) have a component (tag) for starting and a ending factor recognized by "/" in the start range "<".
Example:
<FONT> ... </FONT>
- The first concept that seems to be in the "<" is known as factor or HTML brand and informs the visitor what to do; something like <FONT>
- The terms adhere to after that factor within "< >"are known as features they explain the element's qualities. Such as shade, size, etc.
Features are divided by areas and followed by an equivalent indication "=", after which the attribute's principles are published in quotations (" ").
Thus, a HTML brand may contain the identifier, attributes and principles.
In the following example FONT is the factor, COLOR is the feature and BLUE is the value:
<FONT COLOR="BLUE">This textual content will be blue</FONT>
HTML Papers Structure
- A HTML document (file) is made up of several components and their features.
- At first a HTML factor contains (surrounds ) the document's information. This factor contains two major sub-elements HEAD and BODY. In HEAD you can add the webpage's headline and other components known as metatags, and also JavaScript programs and CSS designs. In BODY you add the document's articles which will be shown on the web site.
Example:
<html>
<head>
<title>Document Title</title>
</head>
<body>
Webpage content
</body>
</html>The overall framework of a HTML document
<HTML>
<HEAD> This one also has several sub-elements:
<TITLE> Here create the headline of the papers, as effective as possible, and end it with </TITLE>
<BASE> Can be used to history the place of the papers in URL type. (Required if the papers is not used in its unique location). Comes to an end with </BASE>
<LINK> Indicates a connection between the papers and other things on the WEB. Comes to an end with </LINK>
<META> Here you write information such as the keypad (language) used, description and keywords that can be found by search engines. Ends with </META>
<SCRIPT> Contains any JavaScript or VB script. Ends with </SCRIPT>
<STYLE> Contains information about style, graphic on the content that will appear on the webpage. Ends with </STYLE>
This is where the elements added in HEAD end
</HEAD>
<BODY> HTML labels and content of the document that are to be displayed on the website are included in this element. You can also add here elements such as: <SCRIPT> </SCRIPT>
Ends with
</BODY>
</HTML>



0 comments:
Post a Comment