• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/27

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

27 Cards in this Set

  • Front
  • Back

HTML MEANING

Hypertext Markup Language

What does HTML code do?

Tells web browsers how to display a website

What is a tag and what is it used for?

Anything with "<>" (angular brackets) Tags help the web browser figure out what to make of any text that's before or after them.

How do you indicate the ending of a code?

When you're ending code you put a dash at within the tag.

What is the Head of an html file?

All of the non visual elements that help make the page work.

What is the body tag

All visual-structural elements are contained within the body tag.

What type of editor is used for html?

Text editor

When you save an html file, how should it be saved?

.html or .htm

Where should you put the <title> tag?

Between the <head> tag

Of which main parts does the html file consist of?

Head and body

How do you create a paragraph in HTML

<p> , </p>

What is XHTML?

Extensible Hypertext Markup Language is part of the family of XML markup languages. It mirrors or extends versions of the widely used Hypertext Markup Language, the language in which Web pages are formulated.

What is a single line break and how is it used?

Use the <br><br /> tag to add a single line of text without starting a new paragraph/without extra space between the text blocks.

How do you format bold text in HTML?

<b> </b>

How do you format big text in HTML?

<big> </big>

How do you format italic text in HTML?

<i> </i>

How do you format small text in HTML?

<small> </small>

How do you format subscripted text?

<sub> </>

How do you format inserted text?

<ins> </ins>

How do you format deleted text?

<del> </del>

Where does the heading go and how do you format it?

The heading goes in the body. <h1> </h1>, etc, with h1 being the highest and h6 being the smallest

What format do you use to make a horizontal line in html?

<hr><hr />

How do you format comments? Can viewers see them?

<!-- Your comment goes here -->. The browser does not display comments, but they help document the HTML and add descriptions, reminders, and other notes.

How do you add an "about me" section?

<h1><span>About Me</span></h1> <p> Hey! I'm <strong>Alex</strong>. Coding has changed my world ... </p> <p class="quote">"Declare variables, not war"</p>

What are HTML attributes?

Attributes provide additional information about an element or a tag, while also modifying them. Most attributes have a value; the value modifies the attribute.



<p align="center"> This text is aligned to center </p>



In this example, the value of "center" indicates that the content within the p element should be aligned to the center:


What measurement can be used for the width attribute in html?

Pixel & percentage

What is the align attribute?

The align attribute is used to specify how the text is aligned.



<html> <head> <title>Attributes</title> </head> <body> <p align="center">This is a text <br /> <hr width="10%" align="right" /> This is also a text. </p> </body> </html>