Section 1

Preview this deck

<em>

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (63)

Section 1

(50 cards)

<em>

Front

Element marks text that has stress emphasis.

Back

<nav>

Front

Element represents a section fo a page whose purpose is to provide navigation links.

Back

<b> Bring Attention To

Front

Element is used to draw the readers attention to the elements contents, which are not otherwise granted special importance.

Back

<a>

Front

Anchor element creates a hyperlink to other webpages, files, locations within the same page, email, or other URL.

Back

<bdi> Bidirectional Isolate

Front

Element tells the browser's bidirectional algorithm to treat the text is contains in isolation from its surrounding text.

Back

<figure>

Front

Element represents self-contained content, and is typically referenced as a single unit.

Back

<q>

Front

Element indicates that the enclosed text is a short inline quotation.

Back

<title>

Front

Element difines the document's title that is shown in a browser's title bar or a pages tab.

Back

<br>

Front

Element produces a line break in text.

Back

<address>

Front

Element indicates that the enclosed HTML provides contact information for a person, people, or an organization.

Back

<HTML>

Front

Element represents the root of an HTML document, also referred to as the root element

Back

What is a markup language?

Front

A computer language that defines the presentation and structure of raw text.

Back

<dl>

Front

Element represents a description list.

Back

<data>

Front

Element links a given content with a machine-readable translation.

Back

<dd>

Front

Element provides details about the definition of the <dt> in a <dl>

Back

<style>

Front

element contains style information for a document, or part of a document.

Back

<h1><h6>

Front

Element represents six levels of section headings.

Back

<cite> Citation

Front

Element is used to describe a reference to a cited creative work, and must include either the title, author, or URL.

Back

<s>

Front

Element renders text with a strikethrough, or line through it.

Back

<section>

Front

Element represents a standalone section.

Back

<div>

Front

Element is the generic container for flow content.

Back

<link>

Front

Element specifies relationships between the current document and an external resource.

Back

<body>

Front

Element represents the content of an HTML document.

Back

<mark>

Front

Element represents text which is marked or highlighted for reference.

Back

<figcaption>

Front

Element represents a caption or legend for the rest of the contents its parent <figure> element.

Back

<main>

Front

Element represents the dominant content of the body of a document.

Back

<hgroup>

Front

Element represents a multi-level heading for a section of a document.

Back

<head>

Front

Element provides general information about the document, including its title and links to its scripts and style sheets.

Back

<ol>

Front

Element represents an ordered list of items.

Back

<abbr> Abbreviation

Front

Element represents an abbreviation or acronym.

Back

<kdb> Keyboard input

Front

Element represents a span of inline text denotin textual user input from a keyboard, voice input, or other text device.

Back

<header>

Front

Element represents introductory content, typically introductory or navigational aids.

Back

<i>

Front

Element represents a range of text that is set off from the normal text for some reason.

Back

<dir>

Front

Element is used as a container for a directory of files and folders.

Back

<bdo> Bidirectional Text Override

Front

Element overrides the current directionality of text, so that the text within is rendered in a different direction.

Back

<pre>

Front

Element represents preformatted text which is to be presented exactly as written in the HTML file.

Back

What does console.log() do in javascript?

Front

What we put inside the parenthesis will be displayed, or logged into the console.

Back

<main>

Front

Element represents the dominant content of the <body> of a document.

Back

<aside>

Front

Element represents a portion of a document whose content is only indirectly related to the documents main content.

Back

<dt>

Front

Element specifies a term in a description list inside of a <dl> element.

Back

<blockquote>

Front

Element indicates that the enclosed text is an extended quotation.

Back

<code>

Front

Element displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code.

Back

<p>

Front

Element represents a paragraph.

Back

<dfn> Definition

Front

Element is used to indicate the term being defined within the context of a definition phrase or sentence.

Back

<footer>

Front

Element represents information about the author of the section, copyright data or links to related documents.

Back

<ul>

Front

Element represents an unordered list of items.

Back

<hr>

Front

Element represents a thematic break between paragraph-level elements.

Back

Who developed JavaScript and when was it created?

Front

Javascript was created in 1995 by Netscape communications.

Back

<li>

Front

Element used to represent an item in a list. Contained in <ol>, <ul>, or <menu>

Back

<article>

Front

Element represents a self-contained composition in a document, page, application, or site.

Back

Section 2

(13 cards)

<strong>

Front

Element indicates that its contents have strong importance, seriousness, or urgency.

Back

<video>

Front

Element embeds a media player which supports video playback into the document.

Back

<sup>

Front

Element specifies inline text which is to be displayed as superscript.

Back

<img>

Front

Element embeds an image into the document. It is a replaced element.

Back

<time>

Front

Element represents a specific period in time.

Back

<audio>

Front

Element is used to embed sound sontent in documents.

Back

<samp>

Front

Element is used to enclose inline text which represents sample output from a computer program.

Back

<span>

Front

Element is a generic inline container for phrasing content, which does not inherently represent anything.

Back

<track>

Front

Element is used as a child of the media elements <audio> and <video>. It lets you specify timed text tracks.

Back

<sub>

Front

Element specifies inline text which should be displayed as subscript.

Back

<small>

Front

Element makes the text font size one smaller.

Back

<area>

Front

Element defines a hot-spot region on an image, used only with the <map> element.

Back

<map>

Front

Element is used with <area> elements to define an image map. ( a clickable link area)

Back