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 <img> tag for the address of the image?
href src rel
<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Which CSS code hides the element on page?
display: none; display: inline; position: relative;
#id {
  display: none;
}
What instruction stops the execution of a while() or for() statement?
continue prompt() break
for(var i = 0; i< 8; i++) {
  if(i > 1) break;
  alert(i);
}
Indicate the function that can create a constant.
define() include() defined()
define("CONSTANT_NAME", "value");
echo CONSTANT_NAME;
HTML Course - Free Lessons

Last accessed pages

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (135112)
  2. PuzzleImg - Script to Create Image Puzzle Game (9213)
  3. Refresh page if window width changes from a device size to other (1643)
  4. CSS Trapezoid Shape (11161)
  5. Check and Validate input field when loses focus, with PHP via Ajax (6696)

Popular pages this month

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