HTML/CSS

5.0(1)
studied byStudied by 13 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/42

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

43 Terms

1
New cards
Where do you add the code to add the title (the tab at the top) into your HTML page?
2
New cards

and

are examples of what?

Tags
3
New cards
What is the full intro tag to an HTML document?
4
New cards
Tag for adding an image?
5
New cards
What symbols indicate that text is a comment and not actual code?
6
New cards
All code that will show up goes between these tags…
7
New cards
Which symbol indicates a closing tag in HTML?
/
8
New cards
Numbered list?
9
New cards
Bulleted list
10
New cards
List item
  • 11
    New cards
    What's the difference between the headings h1 - h6?
    The lower the number the bigger the heading.
    12
    New cards
    What does rgb stand for?
    Red, green, blue
    13
    New cards
    What's the highest value of an rgb number?
    255
    14
    New cards
    How can you add a hyperlink to your site?
    15
    New cards
    What's the relationship between HTML and CSS?
    HTML adds the content and structure. CSS adds the style.
    16
    New cards
    The container for all of the HTML markup?
    17
    New cards
    Contains the information about the webpage. Does not show in the webpages.
    18
    New cards
    The text to display on the browser tab.
    19
    New cards
    The container for the content that will be displayed on the webpage.
    20
    New cards
    The biggest heading.

    21
    New cards
    A subheading - the second biggest.

    22
    New cards
    A paragraph

    23
    New cards
    Bold text
    24
    New cards
    Italic or emphasized text
    25
    New cards
    Hyperlinked text.
    26
    New cards
    A single bullet in a list.
  • 27
    New cards
    A container for a bullet-point list.
      28
      New cards
      A container for a numbered list.
        29
        New cards
        Creates a table
        30
        New cards
        table row
        31
        New cards
        Defines a cell in a table
        32
        New cards
        Defines a header cell in a table
        36
        New cards
        "www.killingit.com"
        37
        New cards
        These modify properties of an HTML tag…
        attribute
        38
        New cards
        This links the style sheet…
        39
        New cards
        How to make a class
        Parakupá Vená / Angel Falls
        40
        New cards
        How to put a class in the style sheet
        .top-img {
        height: 50px;
        border-radius: 5px;
        margin: 10px;
        border-style: dotted;
        border-color: cadetblue;
        }

        ****you put a . in front before****
        41
        New cards
        The id attribute
        Is used to single out just one element for a rule-set.
        42
        New cards
        How to implement an id attribute
        music notes
        43
        New cards
        How to put the id in the style-sheet
        \#notes {
        float: right;
        width: 100px;
        background-color: white;
        box-shadow: 6px 6px gray;
        }

        **you put a # in front before**