How the internet works and HTML

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

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.

20 Terms

1
New cards

What does internet mean?

Interconnected network

2
New cards

What is in the first step of rules for packaging data?

Hypertext Trai Protocol to H

3
New cards

What is the second step of interconnected network?

Pop (point of presence) to Nap (network access point) which are the internet backbones

4
New cards

What is the 3rd step in route for data?

Packets are guided by routers (backbones)

5
New cards

What is the web?

Software that lets you use the content or contribute your own

6
New cards

What is the internet?

Links your computer to other computers globally and is a way of transporting content

7
New cards

What is ISP?

Internet service provider (ex. T-Mobile)

8
New cards

What does bandwidth mean?

Measure of throughput of how much data goes through your connections. The data transfer rate expressed in bits per second.

9
New cards

What are millions of bits per second?

Megabits or Mbps

10
New cards

What are billions of bits per second?

Gigabits or Gbps

11
New cards

Storage device speeds (memory cards) use what?

MB/s (Mega bytes per second)

12
New cards

1MB/s is equivelent to what?

8 Mbps (mega bits per second)

13
New cards

What are the three languages of HTML?

HTML (essential structure), CSS (looks), and JAVA (behaves)

14
New cards

What is the importance of HTML?

It’s the foundation of web pages, organizes content, and makes it accessible 

15
New cards

What are tags of HTML?

Use right and left brackets

<p>=opening (paragraph)

</p>=closing

16
New cards

What are the elements of HTML?

Tag and the contents

<tagname>content</tagname>

<p>My first HTML paragraph. </p>

17
New cards

What are the attributes of HTML?

Provide additional info on an element (some are specific or global and are informative/functional) use double quotes for value

name= “value”

i.e. <body bgcolor=”red”>Content</body>

18
New cards

What is nesting in HTML?

Can nest tags more complex structures (parent element, child element has to close before parent element closes)

<p<This text with a nested <strong>bold</strong> word in it</p> 

This is a text with a nested bold word in it

19
New cards

What is the HTML tree structure?

www.webpage/about (pages within the website)

20
New cards

How do you insert an image/hyperlinking?

Use an image tag <img> (no closing tag needed) and a basic link is created by wrapping text or content inside a <a> element and use href attribute (contains web address)