Html Course

The knowledge of HTML is the most important step for those who want to build quality web pages.
- Here you will find tutorials, online lessons, examples, courses and resources that teach you HTML.
The HTML lessons in this course are free and are best suited for beginners in web development, who want to learn how to create Web pages manually, using the HTML language.

HTML Lessons



- Useful questions and answers on Forum HTML - CSS.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute is used in <a> tag for the address of the link?
src href rel
<a href="http://coursesweb.net/" title="CoursesWeb.net">CoursesWeb.net</a>
Which CSS property sets the type of the text font?
font-family text-decoration font-size
h2 {
  font-family:"Calibri",sans-serif;
}
What instruction selects all the <div> tags with class="cls"?
querySelector("div.cls") getElementsByTagName("div") querySelectorAll("div.cls")
var elm_list = document.querySelectorAll("div.cls");
var nr_elms = elm_list.length;       // number of selected items
alert(nr_elms);
Indicate the function that can be used to get the sum of values in an array.
array_sum() array_diff() array_shift()
$arr =[1, 2, 3, 4);
$arr_sum = array_sum($arr);
echo $arr_sum;       // 10
HTML Course - Free Lessons

Last accessed pages

  1. Vue JS - Short presentation (365)
  2. Align DIVs on the same line (8134)
  3. Get Mouse coordinates inside a Div or an Image (16077)
  4. PHP Unzipper - Extract Zip, Rar Archives (30701)
  5. innerHTML in PHP (16589)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (424)
  2. SHA1 Encrypt data in JavaScript (231)
  3. PHP Unzipper - Extract Zip, Rar Archives (209)
  4. Read Excel file data in PHP - PhpExcelReader (206)
  5. Get and Modify content of an Iframe (134)