Web Design Overview

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

1/32

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.

33 Terms

1
New cards

Steps to Viewing a Website

I. Url

II. Request

III. Response

IV. Rendering Webpage

2
New cards

Path of Url: www.twitter.com/codehs

/codehs

3
New cards

Domain of Url: www.twitter.com/codehs

www.twitter.com

4
New cards

What machine listens for HTTP request to the website domain?

server

5
New cards

Internet Complications

  • Access to copyright material

  • Anonymity (I.e. cyberbullying or pro: equality on the internet)

  • Censorship

6
New cards

Access to copyright material

allow ppl to share content

7
New cards

Anonymity (pro and con)

Con: cyberbullying

Pro: equality on the internet

8
New cards

Censorship

Should a government filtering content from its citizens

Should Google display explicit content?

9
New cards

IP(Internet protocol) addresses

info sent to and from unique address (I.e. 2.1.3.6 or 122.80.32.200)

10
New cards

Protocol

internet lays these rules that connect devices that can communicate (no matter in the type)

11
New cards

Complext Ntwork A

A bunch of device connected to a switch, a simple network, then all tied together to a larger connection, a router

12
New cards

The internet

multiple routers connected together then connected to simple networks

13
New cards

Domain of url

specifices where browser’s requte should be sent

14
New cards

Path of url

specifices what file is being requested

15
New cards

basic structure of HTML

<!DOCTYPE HTML>

<html>

<head>

<title>My First Web Page</title>

</head>

<body>

<h1>My favorite band is The Beatles</h1>

</body>

</html>

16
New cards

Ways to format text in HTML

<p></p>

<hr>

<br>

17
New cards

Different Header types

<h1></h1>
<h2></h2>

<h3></h3>

<h4></h4>

<h5></h5>

<h6></h6>

18
New cards

HTML LINKS

<a href=”link”>Text</a>

19
New cards

HTML IMAGES

<img src=”link” height=”” width=””>

20
New cards

Links in images

<a href=””><img src=””></a>

21
New cards

<img> alt attribute

this is an alternative name information for the image <img src=”” alt=””>

22
New cards

citing artistic work

<p>

Source: Name. TItle of work.Year (https://www.linkofimage.jpg)

</p>

23
New cards

HTML Order list (1, 2, 3, 4…)

<ol>

<li></li>

<li></li>

<li></li>

<li></li>

</ol>

24
New cards

HTML unordered list (a, I., *..)

<ul>

<li></li>

<li></li>

<li></li>

<li></li>

</ul>

25
New cards

HTML Table

<table>

<tr>

<th>title</th>

<th>title</th>

<th>title</th>

</tr>

<tr>

<td></td>

<td></td>

<td></td>

</tr>

<tr>

<td></td>

<td></td>

<td></td>

</tr>

</table>

26
New cards

internal CSS in html

<h2 style=”background-color: blue;”>text</h2>

27
New cards

Html text color

<h3 style=”pink”>text</h3>

<h3 style=”color:#408088;”>text</h3

<h3 style=” color: rgb(255, 128, 0);”>text</h3>

28
New cards

How many devices can view you website?

Any browser on any device can view your webpage

29
New cards

Class CSS

<ul>

<li class= scientific-name>Scientific Name: Urus thibetanus gedrosianus</li>

<li>Lives in: Iran and Pakistan</li>

<

.scientific-name{

font-style: italic;

}

30
New cards

Since id is the similar to class, what makes it so important?

an element/specific within a page

31
New cards

Casade

The Cascade determines which CSS rules will be applied when multiple rules for an item are contradictory.

32
New cards

What rules does Casade use to determine what element is important?

  1. Importance, Specificity, Order (ISO)

33
New cards
knowt flashcard image