int web 1 NEW

studied byStudied by 5 people
5.0(1)
Get a hint
Hint

what does HTML stand for

1 / 37

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

38 Terms

1

what does HTML stand for

hyper text markup language

New cards
2

what is HTML

standard markup language for creating web pages

New cards
3

In a php application, what is HTML responsible for?

HTML is responsible for defining the structure and presentation of content displayed in a web browser.

New cards
4

HTML elements

HTML elements are building blocks of a webpage, defining its structure and content.

New cards
5

HTML attributes

HTML attributes provide additional information about an element and are placed inside the element's opening tag

New cards
6

how wrapping an element in another element affects wrapping???

New cards
7

how different elements render different things to the webpage and why you might pick one over another

structural vs semantic

  • example with strong vs. bold text

  • visual output the same, but strong has an effect on the screenreader

  • do what is more accessible + better for users

New cards
8

how do hierarchies of information help a user understand information on a webpage?

  • use of headings, subheadings, paragraphs, to help users navigate

New cards
9

Understand semantic vs structural - what is conveyed by the selection of an element?

structural - no deeper meaning besides what’s on the webpage

semantic - has meaning behind the output on webpage - screen readers for instance

New cards
10

different HTML image formats

JPG, PNG, GIF, vector images, SVGS, bitmap

New cards
11

JPG

  • stands for joint photographic experts group

  • pros: smaller file, found everywhere

  • data loss makes it worse for printing, no transparency

New cards
12

PNG

  • stands for portable network graphics

  • holds more information than JPGS, used more often when images are complex, can be transparent

  • pros: higher quality

  • cons: slower than JPG

New cards
13

GIF

  • pros: can contain animation

  • cons: PNG compression is better than GIF compression

New cards
14

vector images

  • constructed using mathematical formulas describing shapes, colors, and placement

  • pros: scalable, can be compressed

  • cons: not suited for complex graphic displays

New cards
15

SVGS

  • scalable vector graphic

  • used for rendering two-dimensional images on the internet

  • pros: great for logos

  • cons: lack of pixels make displaying high quality digital photos difficult

New cards
16

HTML forms

  • use elements to collect data from users

New cards
17

form structure

  • form element

  • control elements

  • show code

New cards
18

how do forms work

  • user fills in a form and then presses a button to submit the information to the server

  • have an action and a method

New cards
19

what is a form’s default response in HTML

  • a user fills in a form and presses a button to submit the information to the server

New cards
20

how to include content in a webpage (internal and external)

use element tags

  • internal: "<img src =”image.jpg”>

  • external: <img src = “https://www.example.com/image.jpg”>

New cards
21

what is CSS

  • stands for cascading style sheets

  • lets us style our pages to make them prettier

New cards
22

CSS rules

  • contains two parts: a selector and a declaration

New cards
23

p {

font-family: Arial; }

p is the ____________ and font-family: Arial; is the -_____

selector, declaration

New cards
24

what are ways that css rules cascade and take precedence

  • inheritance

    • CSS properties are inherited from parent elements by their children (if the children has no other value set to it)

  • last rule

    • rule that appears last in the stylesheet takes precedence

  • specificity

    • css rules with higher specificity override those with lower specificity

  • important

    • !important declaration in a CSS rule gives it the highest precedence

New cards
25

box model in HTML

  • html treats every element as living in its own box

New cards
26

display: block

  • renders element as block-level element

  • it will start on a new line and stretch full width of its containing element by default

New cards
27

display: inline

  • flow horizontally within the text content of their element

  • no new line

  • no width or height

New cards
28

display: inline-block

  • exhibit characteristics of both inline and block elements

  • have inline flow (do not start on a new line)

  • block like behavior (can have their own width, height, margins, padding, borders)

New cards
29

display: none

  • hides element from the layout entirely

New cards
30

margins

  • controls gap between boxes

New cards
31

padding

  • allows you to specify how much space should appear between the content of an element and its border

New cards
32

border

literally just the border around an element me thinks…..idk

New cards
33

flexbox

  • a one dimensional CSS web layout model

  • can work on either rows OR columns

New cards
34

css grid

  • a two dimensional CSS web layout

  • can work on rows and columns simultaneously

New cards
35

bootstrap

  • popular column based CSS framework

  • includes HTML and CSS based design templates

New cards
36

what are CSS frameworks? why use one?

  • prewritten, standardized sets of CSS rules and styles that developers can use to style their web projects more quickly and

New cards
37

class selector

  • used to “find” or “select” the HTML elements you want to style

  • the same rule can apply to more than one element if you separate the element names with commas

New cards
38

class declarations

  • are inside curly brackets

  • have a property and a value

    color: (property) yellow; (value)

New cards

Explore top notes

note Note
studied byStudied by 3 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 12 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 12 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 8 people
Updated ... ago
4.0 Stars(1)
note Note
studied byStudied by 175 people
Updated ... ago
5.0 Stars(9)
note Note
studied byStudied by 57 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 11 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 22444 people
Updated ... ago
4.9 Stars(114)

Explore top flashcards

flashcards Flashcard60 terms
studied byStudied by 5 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard160 terms
studied byStudied by 60 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard29 terms
studied byStudied by 19 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard22 terms
studied byStudied by 29 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard20 terms
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)
flashcards Flashcard50 terms
studied byStudied by 85 people
Updated ... ago
4.7 Stars(3)
flashcards Flashcard24 terms
studied byStudied by 2 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard88 terms
studied byStudied by 6 people
Updated ... ago
5.0 Stars(3)