1/39
Study guide sample
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Hyper Text Markup Language
Home Tool Markup Language
Hyperlinks and Text Markup Language
Hyper Text Markup Language
Microsoft
Mozilla
The World Wide Web Consortium
The World Wide Web Consortium
<head>
<h1>
<h6>
<heading>
<h1> is the HTML element used for the largest heading.
<br>
<lb>
<break>
<br> is the HTML element used to insert a line break.
<body style=”background-color:yellow;”>
<body bg=”yellow”>
<background>yellow</background>
<body style=”background-color:yellow;”> is the correct HTML syntax for adding a background color to a webpage.
<important>
<strong>
<i>
<b>
<strong> is the HTML element used to define important text, indicating strong importance.
<em>
<i>
<italic>
<em> is the HTML element used to define emphasized text, typically rendered in italics.
<a>http://www.w3schools.com</a>
<a url="http://www.w3schools.com">W3Schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
<a name="http://www.w3schools.com">W3Schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
/
^
<
*
/ is used to indicate an end tag in HTML.
<a href="url" target="new">
<a href="url" new>
<a href="url" target="_blank">
<a href="url" target="_blank"> This attribute specifies that the link should open in a new tab or window.
<table><tr><tt>
<thead><body><tr>
<table><head><tfoot>
<table><tr><td>
<table><tr><td> This represents an HTML table with rows and cells.
True
False
True, Inline elements do not cause line breaks and are typically displayed within the flow of text, allowing other elements to sit alongside them.
<ol>
<dl>
<ul>
<list>
<ol> This tag is used to create an ordered list in HTML, where items are numbered.
<ol>
<list>
<dl>
<ul>
<ul> This tag is used to create an unordered list in HTML, where items are marked with bullets.
<input type="check">
<checkbox>
<check>
<input type="checkbox">
<input type="checkbox"> This tag is used to create a checkbox input in HTML, allowing users to select or deselect an option.
<input type="text">
<input type="textfield">
<textfield>
<textinput type="text">
<input type="text"> This tag is used to create a single-line text input field in HTML, allowing users to enter text.
<select>
<input type="dropdown">
<input type="list">
<list>
<select> This tag is used to create a drop-down list in HTML, allowing users to select one option from multiple choices.
<textarea>
<input type="textbox">
<input type="textarea">
<textarea> This tag is used to create a multi-line text input area in HTML, allowing users to enter larger amounts of text.
<image src="image.gif" alt="MyImage">
<img href="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
<img src="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage"> This tag is used to insert an image in HTML, allowing the display of graphical content on a webpage.
<body style="background-image:url(background.gif)">
<body bg="background.gif">
<background img="background.gif">
<body style="background-image:url(background.gif)"> This tag is used to set a background image for the HTML document, allowing for styled graphical presentation behind the content.
There is no such thing as an <iframe>
False
True
True, An <iframe> is an HTML element that allows you to embed another HTML document within the current page, enabling the display of external content seamlessly.
False
True
True, HTML comments are used to insert notes in the code that are not displayed on the webpage. They begin with <!-- and end with -->.
True
False
False, Block elements are normally displayed with starting a new line, taking up the full width available.
<meta>
<title>
<head>
<title> is used to define the title of a web document, which is displayed in the browser's title bar or tab.
longdesc
title
src
alt
alt is an attribute used in the <img> tag to provide alternative text for an image, which improves accessibility and is displayed when the image cannot be shown.
<!DOCTYPE HTML5>
<!DOCTYPE html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">
<!DOCTYPE html> is the declaration that defines the document type and version for HTML5, ensuring that browsers render the page in standards mode.
<bottom>
<section>
<footer>
<footer> is an HTML element used to define a footer for a document or section, typically containing metadata, authorship, or copyright information.
False
True
True, is the correct answer, as SVG (Scalable Vector Graphics) elements can be included directly in HTML documents, allowing for scalable graphics and interactive images.
<media>
<movie>
<video>
<video> is the correct HTML element for embedding and playing video files in a webpage, allowing for various media controls and features.
<audio>
<sound>
<mp3>
<audio> is the correct HTML element for embedding and playing audio files in a webpage, providing audio controls such as play, pause, and volume adjustment.
Specifies a context menu for an element. The menu appears when a user right-clicks on the element
Specify whether the content of an element should be editable or not
Update content from the server
Return the position of the first found occurrence of content inside a string
Specify whether the content of an element should be editable or not (True, this attribute indicates if the element's content is editable by the user.)
HTML elements
Event attributes
Style attributes
Event attributes that manage focus and blur events for elements, allowing actions to be triggered when an element gains or loses focus.
CSS
XML
HTML
XML, is the format used for defining vector graphics in SVG, allowing for scalability without loss of quality.
manipulate data in MySQL
create draggable elements
draw graphics
display database records
draw graphics, on a web page dynamically using JavaScript.
validate
placeholder
formvalidate
required
required is an attribute that specifies that an input field must be filled out before submitting the form.
range
controls
search
slider
range, is an input type in HTML that creates a slider control allowing users to select a value from a specified range.
<range>
<meter>
<measure>
<gauge>
<meter> is an HTML element used to represent a scalar measurement within a specified range, often visually indicated by a gauge-like representation.
<navigate>
<nav>
<navigation>
<nav> is an HTML element used to define a set of navigation links, helping users to navigate through a website.
Content aside from the page content
A navigation list to be shown at the left side of the page
The ASCII character-set; to send information between computers on the Internet
Content aside from the page content, is represented by the element, which is often used for sidebars, tangential content, or references.
<section>
<header>
<head>
<top>
<header> is an HTML element used to represent introductory content or navigational links for a document or section.