Interested to Learn Web Design, First Identify HTML


HTML (Hypert Text Markup Language) is a basic lesson that should be known to those of you who are interested to learn to create Web Design. HTML is a collection of scripts that are stored in text format and contains the specified tag commands, those commands will be executed by the web browser.

Writing structure as follows:

<html>
<head>
Title <title> Web </ title>
</ head>
<body>
The content of the web that you created
</ body>
</ html>

From the above structures can be noticed that the writing of tags (the text in the form of two special characters "<" and ">") consists of three parts.

Example: note the title tag writing structure above, <title> an opening tag, and "Title Web" is the tag contents while the closing tag is </ title>. In order to know more details you just try the example below:



And here's the result:


HTML tags are usually paired writing and in the writing must not overlap. such as:

<tr>
          <td>
          </ tr>
</ td>

Right:

<tr>
         <td>
         </ td>
</ tr>

Now I will explain one by one about the structure of the script above:
  • <html> ... </ html>: to declare to the browser that the script used to use HTML
  • <head> .. </ head>: Head of HTML
  • <title> .. </ title>: This tag is located between <head> tag and </ head>, is used to display the title in the browser.
  • <body> .. </ body> tag: This tag is the content of the HTML, it contains everything that will be displayed on the web page. Located between <html> tag and </ html>, under <head> tag and </ head>.
May be useful, and if there is criticism or suggestions or perhaps something to ask. Please fill in the comments or via e-mail can be. thanks

0 comments:

Post a Comment