Section 1

Preview this deck

Comments

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 (43)

Section 1

(43 cards)

Comments

Front

HTML comments are sometimes used in code to explain parts of the markup. They are similar to comments in other languages. Users do not see comments in their browser.

Back

Alt text

Front

a word or phrase that can be inserted as an attribute in an HTML (Hypertext Markup Language) document to tell Web site viewers the nature or contents of an image. The alt text appears in a blank box that would normally contain the image.

Back

<ul>

Front

unorganized list

Back

<img>

Front

image

Back

Nesting/nested tags

Front

HTML tags should be "nested" in a proper order, meaning that the tag opened most recently is always the next tag to close. In the following example, the HTML code is nested correctly, and we've drawn lines to connect opening and closing tags: The following HTML code sample contains two nesting errors.

Back

Elements

Front

what's inside the tags

Back

<a>

Front

Stands for anchor tag. The tag defines a hyperlink, which is used to link from one page to another. The most important attribute of the element is the href attribute, which indicates the link's destination. shareimprove this answer.

Back

Closing tag

Front

</>

Back

HTML

Front

Hypertext Markup Language

Back

<head>

Front

heading

Back

<h1>

Front

the heading of the text

Back

uploading

Front

Uploading is the transmission of a file from one computer system to another, usually larger computer system

Back

<quote>

Front

"quotation marks"

Back

<br>

Front

The <br> tag inserts a single line break. The <br> tag is an empty tag which means that it has no end tag.

Back

syntax error

Front

an error in the code

Back

<span>

Front

The span tag is like the div tag. It has no meaning at all and is mostly used for styling by using an id or class. The difference between the two is that div is a block element, It's on a seperate line. span however is an inline element, meaning that it can be on a line with other elements.

Back

<audio>

Front

use this to insert an audio file

Back

Angle brackets

Front

The "<" and ">" symbols that are on the comma and period keys on the keyboard. Angle brackets are commonly used to enclose a code of some type. For example, HTML tags and PageMaker tags are enclosed in angle brackets.

Back

<map>

Front

The <map> tag is used to define a client-side image-map. An image-map is an image with clickable areas. The required name attribute of the <map> element is associated with the <img>'s usemap attribute and creates a relationship between the image and the map.

Back

<title>

Front

title of the code

Back

Attribute

Front

HTML attribute is a modifier of an HTML element type. An attribute either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them. In HTML syntax, an attribute is added to an HTML start tag.

Back

<video>

Front

use this to insert a video

Back

Gif

Front

(Graphics Interchange Format)

Back

Strict

Front

To opt out of "sloppy mode"

Back

HTML editor

Front

a computer program for editing HTML, the markup of a webpage. Although the HTML markup a web page can be written with any text editor, specialized HTML editors can offer convenience and added functionality.

Back

line break

Front

This tag is used in a block of text to force a line break. This is to be used for things which are a single paragraph, but where this formatting is necessary such as poems or addresses. To separate paragraphs, separate each paragraph into a separate element instead.

Back

<body>

Front

between this will be the body of the code

Back

<div>

Front

A block level container (or 'division' of the web page) for content with no semantic meaning.

Back

<p>

Front

a paragraph

Back

link

Front

Link elements are used to connect your document to a related resource (very different from hyperlinks, which take you to another webpage when you click on them). Links appear only in the head section of a document so they do not alter the content, but only the presentation. Links are most commonly used to connect to a stylesheet, script, favicon, or alternate format of the page such as an RSS feed or PDF.

Back

syntax

Front

the code as a whole

Back

Opening tags

Front

<>

Back

Inline

Front

elements are usually "inline" elements or "block-level" elements. An inlineelement occupies only the space bounded by the tags that define theinline element.

Back

Frames

Front

The <frameset> tag defines, how to divide the window into frames. The rows attribute of <frameset> tag defines horizontal frames and cols attribute defines vertical frames. Each frame is indicated by <frame> tag and it defines which HTML document shall open into the frame. Note − The <frame> tag deprecated in HTML5.

Back

<table>

Front

use this to make a table

Back

<li>

Front

list

Back

Form

Front

A webform, web form or HTML form on a web page allows a user to enter data that is sent to a server for processing. Forms can resemble paper or database forms because web users fill out the forms using checkboxes, radio buttons, or text fields.

Back

HTML converter

Front

a software program that, in simple terms, converts a basic text file into HTML code. HTML is the universally accepted standard language in which Web pages are written.

Back

<html>

Front

Hypertext Markup Language, a standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects on World Wide Web pages.

Back

tags

Front

< >

Back

<i>

Front

The <i> tag defines a part of text in an alternate voice or mood. The content of the <i> tag is usually displayed in italic. The <i> tag can be used to indicate a technical term, a phrase from another language, a thought, or a ship name, etc.

Back

JPEG or JPG

Front

Joint Photographic Experts Group

Back

<strong>

Front

HTML also defines special elements for defining text with a special meaning. HTML uses elements like and for formatting output, like bold or italic text. HTML Bold and Strong Formatting: The HTML element defines bold text, without any extra importance.

Back