Section 1

Preview this deck

Lists

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

1

All-time users

1

Favorites

0

Last updated

1 year ago

Date created

Mar 1, 2020

Cards (26)

Section 1

(26 cards)

Lists

Front

HTML supports two kinds of lists: ordered lists and unordered lists. Within lists each individual list item has its own tag.

Back

Children

Front

An element that is an immediate descendent of another element or nested within another element is called a child. These become useful when using CSS child selectors and psuedo-elements. Example <ul id="parent"> <li id="child">I'm a child of parent!</li> </ul>

Back

href

Front

Links tell the browser where to go using an href attribute, which stores a URL. Example <a href="http://google.com">Google it!</a>

Back

Semantic formatting

Front

These tags are similar to the previously mentioned formatting tags which have fallen out of favor. The difference is that these tags have semantic value (meaning). <em> is used for something that you wish to emphasize and <strong> is used for something that is important. With both of these elements, you can convey the level of emphasis or importance with nesting. The more times that you nest the element within itself, the higher the magnitude of the text it contains. Example <p><strong><strong>Warning:</strong>Acid can cause severe burns</strong> </p>

Back

Usage

Front

Almost all content belongs inside the body tag. The main exceptions are script and style tags, as well as the page title tag. As you can see in this example, there is a heading, an image, and a link all inside the body tag. The head tag contains only external files and the page title. Example <html> <head> <title>My homepage</title> <link rel="stylesheet" type="text/css" href="homepage.css" /> <script type="text/javascript" src="homepage.js"></script> </head> <body> <h1>Hello, this is a picture of my cat!</h1> <img src="cat.jpg" /> <a href="mailto:cat@codecademy.com">Email my cat</a> </body> </html>

Back

Unordered Lists

Front

Unordered lists are just lists whose items are denoted with bullet points. Example Shopping list <ul> <li>Dish soap</li> <li>Kitty litter</li> <li>Tomato sauce</li> </ul>

Back

Title

Front

This tag tells the browser what to display as the page title at the top and tells search engines what the title of your site is. It goes inside <head> tags. Try and make your page titles descriptive, but not overly verbose. Example <title> HTML Glossary </title>

Back

<html> tag

Front

All HTML files live within an over-arching html tag. This is the basic tag that defines an html document. Syntax <html> The rest of your web page goes in here! </html>

Back

Head

Front

Tag that surrounds important content that is invisible to the user, but is important to the browser. Elements within this tag contain metadata about the page and links to stylesheets, scripts, etc. <html> <head> </head> <body> </body> </html>

Back

Horizontal rules

Front

This tag creates a black line one pixel thick that runs the all the way across its container. It can be styled to look differently with CSS. Example This text is divided <hr> ...from this text!

Back

Images

Front

The img tag embeds an image into your HTML. Always found with the 'src' attribute, which tells the browser where to find the image. Note that the <img/> tag is self-closing, and you can reference either local Syntax <img src='mylocalimage.jpg'/>

Back

Links

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. Exampl <link type="text/css" rel="stylesheet" href="styles.css" />

Back

Basic Formatting

Front

You can easily format text to be bold, italic, or underlined using simple formatting tags. Example This text is <b>bold</b>, <i>italicized</i>, and <u>underlined</u>.

Back

Attributes

Front

class HTML elements can have one or more classes, separated by spaces. You can style elements using CSS by selecting them with their classes. Example <div class="big-box yellow-box">This is a big yellow box.</div>

Back

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. Syntax <!-- This is an HTML comment! -->

Back

HTML

Front

What is HTML? HTML stands for Hyper Text Markup Language. It is the language used to create all websites.

Back

id

Front

An HTML element can have an id attribute to identify it. id elements should always be unique to that single element, and each element should never have more than one id. Example <div id="my-box">This is my box! Put your text in some other box.</div>

Back

Ordered Lists

Front

Ordered lists' items are denoted with numbers. Example My numbered list <ol> <li>First item!</li> <li>Second item!</li> <li>Last item!</li> </ol>

Back

Headings

Front

Heading elements like <h1>, <h2>, <h3>, ... allow you to use six levels of document headings, ranging from largest to smallest, breaking up the document into logical sections. For example, the word 'Headings' above is wrapped in a <h2> tag. Syntax <h1> This is a header! </h1>

Back

Hyperlinks

Front

Hyperlinks (or just links) take the user to another webpage when they click on it. The most common attribute used with links is href, which tells the browser where the link goes. Syntax <a href="url this link goes to">Link text</a> Example The following text is <a href="http://google.com">goes to Google</a>.

Back

Line breaks

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. The resulting element on a web page will look like: Example <p> Some text <br/> that spans two lines </p>

Back

Tags & Elements

Front

Tags are basic labels that define and separate parts of your markup into elements. They are comprised of a keyword surrounded by angle brackets <>. Content goes between two tags and the closing one is prefixed with a slash (Note: there are some self-closing HTML tags, like image tags). Tags also have attributes, which are Syntax <tag attribute='value'>content</tag keyword>

Back

Div

Front

A block level container (or 'division' of the web page) for content with no semantic meaning. Syntax <div>This is a div element.</div>

Back

Paragraphs

Front

<p> One of the most common tags in HTML - it denotes a paragraph of text. It often has other elements nested inside of it, such as <img/>, <a>, <strong> and <em>. Syntax <p>This is paragraph text!</p>

Back

Body

Front

The body is the container for all of a page's content. Comes after the <head> tag, within the overall <html> tag. Example <html> <head> <title>An example of the body tag</title> </head> <body> This is inside the body! </body> </html>

Back

Tables

Front

An element for displaying information in rows and columns. Supports headers and footers for labeling columns. Divides information into rows (denoted by the tr tag) which contain cells (denoted by the td tag). Example <table> <thead> <tr> <th>Item</th> <th>Price</th> </tr> </thead> <tbody> <tr> <td>Banana</td> <td>$56.75</td> </tr> <tr> <td>Yogurt</td> <td>$12.99</td> </tr> </tbody> <tfoot> <tr> <td>Total</td> <td>$69.74</td> </tr> </tfoot> </table>

Back