IS 201 Web Development Final Exam

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/28

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

29 Terms

1
New cards

The attribute ALWAYS has a colon after it, and the value ALWAYS has a semicolon after it

ex) font-family: Arial, Helvetica, sans-serif;

attribute: font family

value = Arial, Helvetica, sans-serif;

In CSS, how can you tell if something is a value/attribute vased on formatting?

2
New cards

All the code in between style tags will be CDD code

What do style tags indicate?

3
New cards

Cascading Style Sheets --> it is used for styling and laying out web pages

What does CSS stand for?

4
New cards

Sans-sarif

What kind of font is stated as preferred in web development using CSS?

5
New cards

15px

What font size do we use in this class?

6
New cards

It is used to define the style for many HTML pages

To use it, you need to add a link in the section of each HTML page

What is an external style sheet used for? How do you use it?

7
New cards

BLOCK ELEMENT (an element that forces something that follows to be on the next line

    • are examples of block elements

      vs inline elements that do not (like )

      Any element that forces a line break is a called a

      8
      New cards

      A set of 3 styling attributes:

      Border, Padding (the edge of the content and the content itself), Margin (the space between two pieces of content)

      that can affect the space taken up by a single element

      What is the box model?

      9
      New cards

      HTML: Highlight the code and then hit Command slash

      CSS: Comment out code by starting the line with / then ending it with /. (you can use the command slash method for this too, may as well do it for both, but remember that they are formatted differently

      How do you comment out code in HTML vs CSS?

      10
      New cards

      is a block element

      is an inline element

      and ?

      11
      New cards

      1. Syntax error

      2. Missing closing tag (

      without )

      3. Incorrect Attribute Usage

      If given a line of code, what are some potential reasons why it might not work?

      12
      New cards

      Description

      tag is used to put a picture on a webpage, you tell the computer where to find the picture by writing the name of the picture after scr= and you can describe the image for people who can't see it using alt

      Write the code to make an image on a website

      Image Name: image.jpeg

      Description: "description"

      13
      New cards

      Change sc to scr

      What could you do to fix this line of code?

      music notes

      14
      New cards

      Write code to make a link on another page

      15
      New cards

      contains metadata and links to external resources

      contains images, texts, and other visible content on the webpage

      Explain the difference between and tags, what does them in HTML?

      16
      New cards

      Write code to link a stylesheet to a website

      17
      New cards

      ....

      How do you apply a style to a div?

      18
      New cards

      Size and importance of heading decreases from h1 to h3

      What are the difference between header levels h1, h2, h3?

      19
      New cards

      White space is the space between elements

      When using
      break tags it will create a space between that line and the next one

      Explain white space in HTML

      20
      New cards

      This creates a link to a specific page

      On page anchors are like shortcuts that take you to a specific part of a webpage when you click them

      Back to Top

      Write code that creates an anchor that takes you back to the top of the page

      21
      New cards

      Absolute Positioning = Allows you to literally place any page element exactly where you want it using positioning attributes top, left, bottom, and right to set the location

      Fixed: The element is positioned relative to the browser window itself --> this doesn't change when the window is scrolled so it stays on the same part of the screen no matter if you scroll

      What is the difference between absolute and fixed positioning?

      22
      New cards

      You don't need a closing tag if the element doesn't wrap around any content or if it's self-contained

      Ex)

      doesnt need closing tag

      but

      does need a closing tag because there is content being wrapped within this element

      When do you not need a closing tag < element?

      23
      New cards

      Bootstrap is a front-end framework for faster and easier web development --> it is like a toolbox full of pre-made tools that you can use to build a webpage paster and easier

      What is the point of Bootstrap in this class?

      24
      New cards

      An anchor creates a link to a specific point on the same page

      You can use it to make a table of contents that takes you to different sections of the same webpage

      What is an "on page" anchor?

      25
      New cards

      HTML COMMENT:

      CSS COMMENT: / CSS COMMENT /

      How do you create HTML comments? How do you create CSS comments?

      26
      New cards

      Ordered Lists have numbers/letters

        Unordered lists have bullets

          *Remember that

        • have to be used within
            and
        • What is the difference between ordered lists and unordered lists?

          27
          New cards

          This can be used using the "text-align" properly with values such as 'left', 'right', and 'center' accordingly

          Ex)

          How do you align text left, right, and center?

          28
          New cards

          ...

          How do you apply style definitions, ex) change font family, color, bold, font size?

          29
          New cards

          How do you code a custom style definition vs an existing style?