HTML, CSS, Javascript

Ace your homework & exams now with Quizwiz!

The <div> tag is used to to do what?

divide certain code

Which is used for identifying id?

#

What is a id identifier in CSS?

#firstname Selects the element with id="firstname"

How do you use style in HTML?

(font-size tag) "font-size:20px"

Which is used for identifying class?

.

What is a class identifier in CSS?

.intro Selects all elements with class="intro"

What is the correct format for "comment" in CSS?

/*comment*/

What is the correct format for "comment" in JavaScript?

//comment (forward slash)

Which year was HTML created?

1993

What tag would you use to enable "hover" in CSS?

:hover

What is the correct format for "comment" in HTML?

<!--HTML-->

What is the tag to start a HTML document?

<!DOCTYPE HTML>

How do you write HTML? (Give an example)

<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>

How do you write JavaScript? (Give an example)

<!DOCType HTML> <html> <head> <title>Testing JavaScript</title> </head> <body> Content goes here... </body> </html>

Which is not a valid "comment" for CSS/HTML?

<---Comment--->

How do you close a body tag?

</body>

How do you write CSS? (Give an example)

<head> <style> body { background-color: linen; } h1 { color: maroon; margin-left: 40px; } </style> </head>

Which tag is used for Paragraph?

<p>

How do you link a JavaScript file back to HTML?

<script src = "js/app.js"></script> <script src = "js/students.js"></script>

What are the 4 tags to make a table in HTML?

<table> Table <tr> Table Row <td> Table Data <th> Table Heading

Define CSS

CSS describes how HTML elements are to be displayed on screen, paper, or in other media. -To specify the layout of web pages.

What does CSS stand for?

Cascading Style Sheets

Which is not part of HTML?

Chest

Define HTML

HTML is a markup language for describing web documents (web pages). -To define the content of web pages.

What is the newest HTML version?

HTML5

HTML stands for?

HyperText Markup Language

What is wrong with this CSS code: <img src="https://www.kasandbox.org/programming-images/animals/rabbit.png" alt="Rabbit with lop ears in barn" width="203"

No closed bracket at the end.

Which is a web language, other than HTML?

PHP

What does a <div> tag do?

The <div> tag defines a division or a section in an HTML document. The <div> tag is used to group block-elements to format them with CSS.

What is <noscript> used for?

The HTML <noscript> tag is used to handle the browsers which do recognize <script> tag but do not support scripting. This tag is used to display alternate text message.

What is wrong with this HTML code: <p>I am very excited to be part of this business!<p>

There is no / at the end "<p>.

Is this the correct format: alert(" I am a alert box!")

Yes

The * symbol in CSS is used to change?

all elements

Define JavaScript

an object-oriented computer programming language commonly used to create interactive effects within web browsers. -To program the behavior of web pages

What do you need to write to change font-style in CSS?

font-family

JavaScript is used to make what kind of site?

interactive

Which is NOT used for Math in JavaScript?

x


Related study sets