HTML Flashcards
(11 cards)
is the programming language used to write web documents. This language is not difficult to learn and you do not have to be a programmer to understand and use it.
HTML
HTML stands for
HyperText Markup Language
is the major language of the Internet’s World Wide Web
HTML code
is a language for describing web pages
HTML
HTML is not a programming language, it is a
markup language
A markup language is a set of
markup tags
uses markup tags to describe web pages
HTML
An HTML element is defined by
start tag, some content, and an end tag
HTML elements can be nested (TRUE or FALSE)
TRUE
All HTML documents consist of nested HTML elements. (TRUE Or FALSE)
TRUE
HTML Page Structure
<html>
<head>
<title>My WebPage</title>
</head>
<body>
<h1>Welcome to My Web Page!</h1>
<p>This is a paragraph.</p>
</body>
</html>