prabu .G
Quiz por , criado more than 1 year ago

This Quiz contains questions from HTML, CSS, and JavaScript.

1097
0
0
prabu .G
Criado por prabu .G quase 7 anos atrás
Fechar

WEBMANIA

Questão 1 de 10

1

In the following code snippet, what value is given for the right margin ?
code:
margin: 5px 10px 3px 8px

Selecione uma das seguintes:

  • 8px

  • 10px

  • 3px

  • 5px

Explicação

Questão 2 de 10

1

Which of the following would be used to create class called button which has a width of 750px, a height of 30px and the color of the text is black ?

Selecione uma das seguintes:

  • .button {height: 30px; width: 750px; text: black;}

  • #button {height: 30px; width: 750px; color: black;}

  • .button {height: 30px; width: 750px; color: black;}

  • #button {height: 30px; width: 750px; text: black;}

Explicação

Questão 3 de 10

1

How much width will this div occupy ?
div {
width: 100px;
padding: 10px;
margin-right: 5px;
border: 2px;
}

Selecione uma das seguintes:

  • 100px

  • 117px

  • 129px

  • 124px

Explicação

Questão 4 de 10

1

Assume that this code is linked together correctly
p { color: red; padding: 10px 5px; background: black; }
.fancy {font-family: cursive; background: red; color: green; }
.plain {font-family: Times, serif; color: black; }
<p class="plain fancy"> Hi </p>
What color font is used to display "Hi" ?

Selecione uma das seguintes:

  • green

  • red

  • black

  • browser default

Explicação

Questão 5 de 10

1

What is default font size of the h1 tag ?

Selecione uma das seguintes:

  • 40px

  • 24px

  • 16px

  • 32px

Explicação

Questão 6 de 10

1

Which key word used to make animation in HTML code ?

Selecione uma das seguintes:

  • @keyframe

  • @animation

  • @keyframes

  • @html-animation

Explicação

Questão 7 de 10

1

Assume the following rule is the only one that styles the body element:
body { font-family: Cursive, Helvetica, Verdana; }
What happens if the browser doesn't support any of these font families ?

Selecione uma das seguintes:

  • The text will not be displayed

  • The text will be displayed in Cursive

  • The text will be displayed in the default browser font-family

  • None of the above

Explicação

Questão 8 de 10

1

Assume that code:
<html>
<head>
<style>
div {
margin-right:15px;
float: left;
}
.a {
width: 100px;
color: #ff00ff;
}
.b {
width: 100px;
margin-right: 15px;
float: right;
}
<style>
<head>
<body>
<div class="a">It is a division A</div>
<div class="b">It is a division B</div>
</body>
</html>
Total width of the body is 1000px. What is the starting point of division B ?

Selecione uma das seguintes:

  • 115px

  • 101px

  • 885px

  • 900px

Explicação

Questão 9 de 10

1

How do you display a border like this:
the top border = 10 pixels
the bottom border = 5 pixels
the left border = 20 pixels
the right border = 1 pixels

Selecione uma das seguintes:

  • border-width: 10px 5px 20px 1px;

  • border-width: 10px 20px 5px 1px;

  • border-width: 10px 1px 5px 20px;

  • border-width: 5px 20px 10px 1px;

Explicação

Questão 10 de 10

1

How do you select all p elements inside a div element ?

Selecione uma das seguintes:

  • div+p

  • div.p

  • div p

  • all.p

Explicação