Html/html Course

Not available content for this page.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute specifies the URL address where to send the form-data?
method action name
<form action="script.php" method="post"> ... </form>
Which CSS property can be used to break lines in the middle of words?
word-wrap line-height font-size
#id {
  width: 100px;
  word-wrap: break-word;
}
Which function sorts the elements of an array into alphabetical order, based on the string values?
pop() sort() shift()
var tutorials = ["php", "html", "css", "flash"];
tutorials.sort();
alert(tutorials[0]);          // css
Indicate the function that returns the value of the last element into an array.
current() next() end()
$code =[10=>"Perl", 20=>"PHP", 21=>"Python", 30=>"JavaScript");
$last = end($code);
echo $last;      // JavaScript

Last accessed pages

  1. PHP Unzipper - Extract Zip, Rar Archives (31781)
  2. SHA512 Encrypt hash in JavaScript (24782)
  3. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (137757)
  4. PhpSpreadsheet - Read, Write Excel and LibreOffice Calc files (26036)
  5. Read Excel file data in PHP - PhpExcelReader (96756)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (70)
  2. Read Excel file data in PHP - PhpExcelReader (19)
  3. PHP Unzipper - Extract Zip, Rar Archives (17)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (15)
  5. SSEP - Site Search Engine PHP-Ajax (14)