1/85
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
HyperText Markup Language (HTML)
It is the standard markup language for creating Web pages, no matter how simple or complex.
HyperText
In “HTML”, it refers to how links on the Web let users move from one document to another.
Tim Berners-Lee
Introduced HTML in 1993
HTML5
It supports multimedia such as audio and video, new tags, elements, and application programming interfaces (API).
World Wide Web Consortium (W3C)
It manages the specifications of what is in HTML and what is not.
HTML Document
It is a text file created in any text editor containing textual content, elements, attributes, and tags.
HTML Element (HTML Basics)
It is the component of an HTML document containing formats, instructions, and semantic meaning.
Paragraph (HTML Basics)
It the basic unit of text in an HTML document.
HTML Attribute (HTML Basics)
It is used to modify or define an HTML element. It is also known as the name=value pair.
HTML Tags (HTML Basics)
These keywords define how web browsers will format and display the content on an HTML file.
Headings (HTML Basics)
These are titles or subtitles that can be displayed on a webpage.
Links (HTML Basics)
a href attribute that specifies the URL of the webpage the link goes to.
Form (HTML Basics)
It is an alternative way to interact with the server and collect user inputs.
HTML Table (HTML Basics)
It consists of table cells that allow web developers to organize and arrange data into rows and columns.
Table Header (Table Elements)
the top row of a table that acts as a title for the type of information in each column.
Table Row (Table Elements)
used to indicate the number of rows displayed in a table.
Table Data (Table Elements)
holds the data displayed in a table.
Colspan (Table Elements)
is used to join two or more columns in a table
Rowspan (Table Elements)
is used to join two or more rows in a table
Border (Table Elements)
This attribute is used to separate the table cells.
<!DOCTYPE> (HTML Structure)
short for Document Type Definition that tells the browser or any software reading the HTML document what type of document is about to be processed.
<html> (HTML Structure)
also referred to as “root element.” It is the container for all other HTML elements except for <!DOCTYPE>.
<title> (HTML Structure)
shows extra information about an element.
<head> (HTML Structure)
the container for metadata (data about data)
<meta> (HTML Structure)
used to specify the page description, author of the document, character coding, and other metadata.
<body> (HTML Structure)
defines the content in an HTML document displayed in the browser.
<link> (HTML Structure)
defines the connection between the current document and an external source.
<script> (HTML Structure)
used to embed a client-side script (JavaScript) that either contains scripting statements or points to an external script file
Image (HTML Elements and Attributes)
It is a way to embed an image or an animated image, such as GIF, on an HTML webpage.
src (HTML Elements and Attributes)
It is used for specifying the path of the image
alt (HTML Elements and Attributes)
It is used for determining an alternate text for the image.
colon symbol : (HTML Elements and Attributes)
It is used for declaring values.
List (HTML Elements and Attributes)
It is a way to group a set of related items in HTML.
Description lists (HTML Elements and Attributes)
It let users list terms with their descriptions.
Span (HTML Elements and Attributes)
It is used to color or mark up a part of a text or document. It acts like the <div> tag, which defines a division or a section in an HTML document.
Navigation (HTML Elements and Attributes)
It is used to define a set of navigation links. It represents a page section with links to other web pages or parts within the same webpage.
Input and Control Functions (Forms)
These are used to gather text information from users and are defined by the <input> tag.
Text Field (Forms)
It displays a single-line text input field for text input. It has different inputs that web programmers can apply, including a line of text, password, email, contact number, and URL.
Radio Button (Forms)
It allows users to select one of the available options
Checkbox (Forms)
It allows users to select as many options as possible out of the available options.
Date and Time Control (Forms)
It is used to create various date and time inputs.
Button (Forms)
It is used to create a button with different functions
Submit Button (Forms)
It allows users to submit any data entered in the input field.
Audio (Multimedia and Graphics)
It is defined using the <audio> tag and uses the <source> element for the audio source file.
control (Multimedia and Graphics)
This attribute is used to add audio controls such as play, pause, and volume.
Video (Multimedia and Graphics)
It is defined using the <video> tag and uses the <source> element for the video source file.
Canvas (Multimedia and Graphics)
It is used to draw graphics such as paths, boxes, circles, text, and adding images.
Poster (Multimedia and Graphics)
This attribute is used to display a thumbnail before playing the video.
Cascading Style Sheet (CSS)
It describes how a webpage should look in terms of colors, fonts, and spacing among others. It can make the website look whatever the designer wants.
CSS3
It allows animations, more visual effects, and more support for layout features such as columns and grids.
Cascading
In “CSS”, it means that styles are applied in the order they are encountered by the browser, from the top of the style sheet to the bottom.
Style sheet
CSS uses codes to define the styles to be applied to each element in a webpage. A collection of these code statements is called a __________
selector
It is the specific HTML element to be styled with CSS.
declaration
It includes the property, value, and ends with a semicolon.
Internal Style Sheet
It refers to when the CSS ruleset is inside the HTML document.
External Style Sheet
It refers to when the CSS ruleset is on a separate file.
<link>
In using eternal style sheet, this tag uses the href attribute which refers to the relative or absolute URL of the file.
rel
This attribute is used to specify the relationship between the current document and the linked document.
Styling Text
It can have the biggest impact on the general design of the website.
font-family
This property is used to define the font.
font stack
It is a process wherein there is a comma-separated list of fonts from highest to lowest priority, with the font to be used listed first and followed by others in the order they are to be used.
Sizing Text
Text can be resized using the font-size property.
Pixels (px)
It is a fixed measurement that gives designers the most control over the size
Percentage (%)
It has a default size of 16px
font-weight (Formatting Text)
This property allows the application of different boldness to text.
font-style (Formatting Text)
This property italicizes text.
text-decoration (Formatting Text)
This property allows emphasis lines to text.
text-align (Formatting Text)
This property aligns the text horizontally.
Adding Colors
Finding the right color scheme for a website is essential to good design.
RGB (Adding Colors)
A comma-separated list of the amount of red, green, and blue in a color, ranging from 0 to 255.
Hexadecimal (hex) values (Adding Colors)
A six-character code that defines the RGB in a color preceded by a #.
Color names (Adding Colors)
A set of predefined names for colors. The easier method to use.
Background Property
This adds an image or a color to the background of the webpage.
box model
It refers to how CSS sees every HTML element as if it is in its own box.
normal flow
By default, when a browser loads a webpage, the boxes flow on the page sequence as it encounters them in the code.
Border
This can be put on all four sides or put individually on any side. This can also be modified using colors, styles, width, radius, margin, and padding.
Margin
It is the property that adds spacing around the content
padding
It adds spacing within the elements or white space inside the container.
Dotted (Border Styles)
consists of rounded dots that display on a border.
Solid (Border Styles)
a single, straight, and solid border.
Dashed (Border Styles)
short dashes or line segments.
Double (Border Styles)
a two-line solid border.
Groove (Border Styles)
a three-dimensional border that looks like it is carved into the page.
Ridge (Border Styles)
a three-dimensional border that is opposite of the groove style.
Inset (Border Styles)
makes content in the border look like it is coming inside of the canvas.
Outset (Border Styles)
makes content in the border look like it is coming outside of the canvas.