Cada pergunta deste Quiz é cronometrada.
What does HTML stand for? ( როგორ იშიფრება HTML ? )
Hyperlinks and Text Markup Language
Home Tool Markup Language
Hyper Text Markup Language
Who is making the Web standards? ( ვინ აწესებს web-ის სტანდარტებს? )
Google
IBM
The World Wide Web Consortium
Microsoft
Mozilla
Choose the correct HTML element for the largest heading: (აირჩიეთ სწორი HTML ელემენტი უდიდესი ტექსტის ფონტით გამოსატანათ )
<h6>
<head>
<h1>
<big>
What is the correct HTML element for inserting a line break?
<break>
<newline>
<br>
<new>
What is the correct HTML for adding a background color?
<body bg="red">
<body background="yellow">
<div background="green">
<div style="background-color:grey;">
What is the correct HTML for creating a hyperlink?
<a href="http://www.google.com">google</a>
<a url="http://www.google.com">google</a>
<a>href="http://www.google.com"</a>
How can you open a link in a new tab/browser window?
<a href="url" new>
<a href="url" new_window>
<a href="url" target="_blank">
<a href="url" target="_new">
How can you make a numbered list?
<ol>
<ul>
<dl>
<nl>
What is the correct HTML for making a text input field?
<textfield>
<text>
<input type="text">
<input type="textfield">
What is the correct HTML for making a text area?
<input type="textarea">
<input type="textbox">
<textarea>
Which doctype is correct for HTML5?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">
<!DOCTYPE HTML5>
<!DOCTYPE HTML>
What does CSS stand for?
Creative Style Sheets
Computer Style Sheets
Cascading Style Sheets
Colorful Style Sheets
Where in an HTML document is the correct place to refer to an external style sheet?
At the end of the document
In the <body> section
In the <head> section
In the <footer> section
Which HTML tag is used to define an internal style sheet?
<script>
<style>
<code>
<css>
Chose correct CSS syntax?
{body;color:black;}
{body:color=black;}
body{color=black;}
body {color: black;}
Inside which HTML element do we put the JavaScript?
<js>
<javascript>
<scripting>
Where is the correct place to insert a JavaScript?
The <body> section
The <head> section
Both the <head> section and the <body> section are correct
The <footer> section
How do you call a function named "myFunction"?
call myFunction();
myFunction();
call to function myFunction();
JavaScript is the same as Java.
yes
no
why not
Which operator is used to assign a value to a variable?
*
/
=
-