NEW
Font size
WorksheetsProgramming - Intro to HTML
Total questions: 15
Worksheet time: 23mins
HTML coding involves using ____________ to create webpages.
Tabs
Tags
Labels
Quotes
HTML stands for...
Hyper Text Markup Language
High Tech MachineLanguage
High Tech Modem Language
Hyper Tech Markup Lexicon
This coding is used to create a paragraph:
<pr></pr>
<p></p>
<para></para>
<par></par>
Which tag would you use to make a heading?
<heading></heading>
<bigger></bigger>
<h></h1>
<h1></h1>
Which tag pair is used to create the largest heading?
<h1></h1>
<h9></h9>
<h type = "largest"></h>
<h6> </h6>
Everything visible on a web page goes between these two tags.
<body> </body>
<title> </title>
<header> </header>
None of the Above
Which tag is used to define a single line break?
<br>
<slb>
<linebreak>
<line>
What symbol indicates a closing tag?
/
>
.
)
An HTML program is saved by using the ____ extension.
A. .ht
B. .html
C. .hml
D. None of the above
A program in HTML can be rendered and read by
A. Web browser
B. Server
C. Interpreter
D. None of the above
Which set contains all of the DEFAULT tags needed to create a webpage?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
The _____ element defines the largest heading
<h2>
<h1>
<h3>
<h4>
