NEW
Font size
WorksheetsZoom Cafe Episode 3
Total questions: 15
Worksheet time: 7mins
Which attribute specifies a unique alphanumeric identifier to be associated with an element?
class
id
article
html
Which of the following is not an empty element?
<hr/>
<br/>
<p/>
Both <hr/> and <br/>
Which of the following gives a text description of the image if it is not available?
alt
title
src
height
Which of the following is not set with font-style property?
font-style: normal
font-style: italic
font-style: oblique
font-style: capitalize
By Default the direction of flex is?
Row
Column
Select the CSS property that sets the width of an element’s bottom border?
border-width
border-bottom
border-width-down
border-bottom-width
Which of the following Property controls the display of small caps?
font-size
font-variant
font-style
font-weight
Which is the correct CSS syntax?
Body:color=black
{body;color:black}
{body:color=black(body}
Body {color: Black}
What is the correct HTML for referring to an external style sheet?
<style src="mytable.css">
<link ref="stylesheet" type="text/css" href="myclass.css">
<stylesheet>mytable.css</stylesheet>
Which is not a value of POSITION element in css
relative
fixed
Sticky
moving
Choose appropriate Option(s) : JavaScript is also called as _____________
Browser Side Scripting Language
Server Side Scripting Language
None of These
Client Side Scripting Language
Local Browser used for validations on the Web Pages uses ________
java
html
css
javascript
Is this correct syntax to include JS Code inside HTML Page ?
<script type="text/javascript">
...
</script>
YES
NO
We cannot Place JS Code in the body tag .
FALSE
TRUE
Is this placement of JS code inside HTML Element is Error Free ?
<html><head><title>My Page</title>
</head>
<body>
<a href="javascript:myFunction();">Click here</a>
<script type="text/javascript">
function myFunction() {
alert('Hello world');
}
</script>
</body>
</html>
YES
NO
