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