Html Course


What is HTML? (Hypertext Markup Language)

- It is a logical set of codes that constitues the appearance of a web document and the information contained. The codes are written in '<' (open bracket) and '>' (closed bracket), although they are not really brackets, that is what they are called and look like: < >.

Example:
<BODY> or <DIV>
- Most elements (also named tags) have an element (tag) for opening and a closing element distinguished by '/' inside the brackets: '< >'.
Example:
<DIV> ... </DIV>
- The first word that appears inside the '<' is called element or HTML label and tells the browser what item to create; something like <DIV> (a block element).
- The words follow after that element inside '< >'are named attributes they describe the element's properties. Such as color, size, etc.
- Attributes are separated by spaces and followed by an equal sign '=', after which the attribute's values are written into quotes (' ').
- Thus, a HTML label may contain the identifier, attributes and values.
- In the following example, DIV is the element, style is the attribute and 'color;blue;' is the value:
<DIV style='color:blue;'>This text will be blue</DIV>

HTML Document Structure

- A HTML document (file) consists of several elements and their attributes.
- At first a HTML element contains (surrounds ) the document's data. This element contains two main sub-elements HEAD and BODY. In HEAD you can add the webpage's title and other elements known as metatags, and also JavaScript scripts and CSS styles. In BODY you add the document's content which will be displayed on the webpage.

Example:
<!DOCTYPE html>
<html>
 <head>
 <title>Document Title</title>
 </head>
 <body>
 Webpage content
 </body>
</html>

The overall structure of a HTML document


<!DOCTYPE html>
<html>

    <HEAD> This one also has multiple sub-elements:
        <TITLE> Here write the title of the document, as suggestive as possible, and end it with </TITLE>
        <BASE> Can be used to record the location of the document in URL form. (Required if the document is not accessed in its original location). Ends with </BASE>
        <LINK> Indicates a relationship between the document and other objects on the WEB. Ends 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>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
Basic HTML elements

Last accessed pages

  1. JavaScript Course - Free lessons (31411)
  2. Properties and Methods of the Form elements (594)
  3. PHP Strings (3263)
  4. Selection Tools (8145)
  5. Get Lower, Higher, and Closest Number (5342)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (201)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (51)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide