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 type of <input> creates a color well control for selecting a color value?
type="text" type="color" type="date"
<input type="color" name="get_color" />
Which CSS method rotates the HTML element at a given degree?
scale() translate() rotate()
#some_id:hover {
  transform: rotate(60deg);
  -ms-transform: rotate(60deg);    /* IE 9 */
  -moz-transform: rotate(60deg);   /* Firefox */
}
Click on the function that returns the number with the highest value.
pow() min() max()
var maxn = Math.max(8, 4, 88, 56);
alert(maxn);      // 88
Which function prevent the same file from being included more than once in a page?
include() include_once() require()
include_once("some_file.php");
HTML Course - Free Lessons

Last accessed pages

  1. Zodiac Signs JavaScript code (10452)
  2. PHP getElementById and getElementsByTagName (47973)
  3. Insert, Select and Update NULL value in MySQL (58092)
  4. PhpSpreadsheet - Read, Write Excel and LibreOffice Calc files (25095)
  5. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (131746)

Popular pages this month

  1. PHP Unzipper - Extract Zip, Rar Archives (225)
  2. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (167)
  3. SHA1 Encrypt data in JavaScript (127)
  4. Convert XML to JSON in JavaScript (86)
  5. Create simple Website with PHP (84)