1/34
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
content and structure = HTML,
presentation = CSS,
behavior = Javascript
What makes up a webpage? (4)
Hyper Text Markup Language
is a language for creating web pages
static websites
Purpose of HTML Language is to create _____
Hyper Text Markup Language
It is a markup language
Hyper Text Markup Language
is not a programming language.
single tags
Example of HTML tags:
<br> & <hr>
paired tag
Example of HTML tags:
<u> AUSTRIA </u> Marc Ed
<!DOCTYPE> declaration
All HTML documents must start with a _____.
<!DOCTYPE> declaration
The declaration is not an HTML tag.
<!DOCTYPE> declaration
It is an "information" to the browser about what document type to expect.
<html> tag
represents the root of an HTML document.
<html> tag
is the container for all other HTML elements (except for the <!DOCTYPE> tag).
<head> element
is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag.
Metadata
is data about the HTML document.
Metadata
is not displayed.
Metadata
typically define the document title, character set, styles, scripts, and other meta information.
Metadata
In HTML:
Information about the HTML document itself rather than the content of the document
Metadata
In HTML:
It provides essential details that help browsers, search engines, and other tools understand and process the document.
Metadata
In HTML:
Not directly displayed to users.
Instead, it serves as background information that affect show the page is handled and presented.
<title>,
<style>,
<base>,
<link>,
<meta>,
<script>,
<noscript>
The following elements can go inside the <head> element (7)
<title> tag
defines the title of the document.
<title> tag
must be text-only, and it is shown in the browser's title bar or in the page's tab.
<title> tag
is required in HTML documents
contents of a page title
The _____ is very important for search engine optimization (SEO)
page title
is used by search engine algorithms to decide the order when listing pages in search results.
<title> element
defines a title in the browser toolbar
provides a title for the page when it is added to favorites
displays a title for the page in search-engine results
longer, descriptive
Here are some tips for creating good titles:
Go for a _____ title (avoid one- or two-word titles)
50-60 characters
Here are some tips for creating good titles:
Search engines will display about _____ of the title, so try not to have titles longer than that
list of words
Here are some tips for creating good titles:
Do not use just a _____ as the title (this may reduce the page's position in search results)
<body> tag
defines the document's body.
<body> element
contains all the contents of an HTML document, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
one
There can only be _____ <body> element in an HTML document.
XAMPP,
LAMP,
LEMP,
MAMP,
WAMP,
AMPSS,
EasyPHP
Local Host Servers (6)
Visual Studio Code,
Eclipse,
Notepad ++,
Netbeans
Text Editors (4)
An opening tag without a closing tag,
Misspelled tag or attribute names,
Quotation marks that aren’t paired,
Incorrect file references in link, img, or <a> elements.
Common coding errors (4)