NEW
Font size
WorksheetsKUIS PEM WEB KELAS B
Total questions: 35
Worksheet time: 6mins
What is the correct HTML for referring to an external style sheet?
Hyperlink and Text Markup Language
Hyper Text Markup Language
Home Tool Markup Language
Who is making the Web standards?
Microsoft
Mozilla
The World Wide Web Consortium
Choose the correct HTML element for the largest heading:
<heading>
<h1>
<h6>
<head>
What is the correct HTML element for inserting a line break?
<lb>
<break>
<br>
What is the correct HTML for adding a background color?
<body bg="yellow">
<body style="backgoround-color:yellow;">
<background>yellow</background>
Choose the correct HTML element to define emphasized text
<italic>
<em>
<i>
What is the correct HTML for creating a hyperlink?
<a name="http://www.polinela.ac.id">Polinela</a>
<a url="http://www.polinela.ac.id">Polinela</a>
<a href="http://www.polinela.ac.id">Polinela</a>
Which character is used to indicate an end tag?
<
^
/
*
How can you open a link in a new tab/browser window?
<a href="url" new>
<a href="url" target="_blank">
<a href="url" target ="new">
Which of these elements are all <table> elements?
<table><tr><tt>
<table><tr><td>
<table><head><tfoot>
<thead><body><tr>
How can you make a numbered list?
<ol>
<dl>
<ul>
<list>
How can you make a bulleted list?
<dl>
<ul>
<ol>
<list>
What is the correct HTML for making a checkbox?
<input type="checkbox">
<checkbox>
<check>
<input type="check">
What is the correct HTML for making a text input field?
<input type="text">
<input type="textfield">
<textfield>
<textinput type="text">
What is the correct HTML for making a drop-down list?
<input type="dropdown">
<select>
<list>
<input type="list">
What is the correct HTML for making a text area?
<textarea>
<input type="textbox">
<input type="textarea">
What is the correct HTML for inserting an image?
<img href="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
<image src="image.gif" alt="MyImage">
HTML comments start with <!-- and end with -->
True
False
Block elements are normally displayed without starting a new line.
True
False
Which HTML element defines the title of a document?
<meta>
<title>
<head>
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
logdesc
src
title
alt
Which doctype is correct for HTML5?
<!DOCTYPE html>
<!DOCTYPE HTML5>
Which HTML element is used to specify a footer for a document or section?
<footer>
<section>
<bottom>
What is the correct HTML element for playing video files?
<media>
<video>
<movie>
What is the correct HTML element for playing audio files?
<audio>
<sound>
<mp3>
In HTML, which attribute is used to specify that an input field must be filled out?
validate
formvalidate
required
placeholder
Which HTML element is used to specify a header for a document or section?
<header>
<top>
<section>
<head>
What does CSS stand for?
Computer Style Sheets
Cascading Style Sheets
Creative Style Sheets
Colorful Style Sheets
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
<style src="mystyle.css">
Where in an HTML document is the correct place to refer to an external style sheet?
At the end of the document
In the <body> section
In the <head> section>
Which HTML tag is used to define an internal style sheet?
<css>
<script>
<style>
Which HTML attribute is used to define inline styles?
styles
font
class
style
Which is the correct CSS syntax?
{body;color:black;}
{body:color=black;}
body {color: black; }
body:color=black;
How do you insert a comment in a CSS file?
/* ... */
' ...
// ...
// ... ///
Which property is used to change the background color?
bgcolor
background-color
color
