NEW
Font size
WorksheetsIntroduction to HTML
Total questions: 10
Worksheet time: 5mins
It is the standard markup language for creating Web pages.
HTML (Hyper Text Markup Language)
Javascript
CSS (Cascading Style Sheets)
HTML tags
These are label pieces of content such as "heading", "paragraph", "table", and so on
HTML (Hyper Text Markup Language)
Web Browsers
HTML elements
HTML tags
HTML tags are element names surrounded by __________.
<angle brackets>
(round brackets)
[square brackets]
(round brackets) and [square brackets]
The start tag is also called the ____________, and the end tag the closing tag.
start tag
beginning tag
new tag
opening tag
The _______________ declaration defines this document to be HTML5
<!DOCTYPE html>
<html>
<head>
<title>
The end tag is written like the start tag, but with a forward slash inserted before the tag name. Which is the following is an example of a correct end tag?
<p>
<p/>
</p>
</p/>
The <p> element defines a ___________.
title
heading
paragraph
page content
The _____ element defines a large heading
<h2>
<h1
<h3>
<h4>
