Question 1
Question
What does HTML stand for?
( როგორ იშიფრება HTML ? )
Answer
-
Hyperlinks and Text Markup Language
-
Home Tool Markup Language
-
Hyper Text Markup Language
Question 2
Question
Who is making the Web standards? ( ვინ აწესებს web-ის სტანდარტებს? )
Question 3
Question
Choose the correct HTML element for the largest heading:
(აირჩიეთ სწორი HTML ელემენტი უდიდესი ტექსტის ფონტით გამოსატანათ )
Question 4
Question
What is the correct HTML element for inserting a line break?
Answer
-
<break>
-
<newline>
-
<br>
-
<new>
Question 5
Question
What is the correct HTML for adding a background color?
Question 6
Question
What is the correct HTML for creating a hyperlink?
Answer
-
<a href="http://www.google.com">google</a>
-
<a url="http://www.google.com">google</a>
-
<a>href="http://www.google.com"</a>
Question 7
Question
How can you open a link in a new tab/browser window?
Answer
-
<a href="url" new>
-
<a href="url" new_window>
-
<a href="url" target="_blank">
-
<a href="url" target="_new">
Question 8
Question
How can you make a numbered list?
Question 9
Question
What is the correct HTML for making a text input field?
Answer
-
<textfield>
-
<text>
-
<input type="text">
-
<input type="textfield">
Question 10
Question
What is the correct HTML for making a text area?
Answer
-
<input type="textarea">
-
<input type="textbox">
-
<textarea>
Question 11
Question
Which doctype is correct for HTML5?
Question 12
Question
What does CSS stand for?
Answer
-
Creative Style Sheets
-
Computer Style Sheets
-
Cascading Style Sheets
-
Colorful Style Sheets
Question 13
Question
Where in an HTML document is the correct place to refer to an external style sheet?
Question 14
Question
Which HTML tag is used to define an internal style sheet?
Answer
-
<script>
-
<style>
-
<code>
-
<css>
Question 15
Question
Chose correct CSS syntax?
Answer
-
{body;color:black;}
-
{body:color=black;}
-
body{color=black;}
-
body {color: black;}
Question 16
Question
Inside which HTML element do we put the JavaScript?
Answer
-
<js>
-
<script>
-
<javascript>
-
<scripting>
Question 17
Question
Where is the correct place to insert a JavaScript?
Question 18
Question
How do you call a function named "myFunction"?
Question 19
Question
JavaScript is the same as Java.
Question 20
Question
Which operator is used to assign a value to a variable?