Leason1 Flashcards

1
Q

What is an Internet

A

Is a decentralised communication network that functions outside of central control, independent of all restriction and borders and enables computers to be connected to each other within a network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Basics concepts

A

Http(hypertext transfer protcal)
Dns(domain name system)
Ip address(Internet protocal)
Www( worl wide web)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is an http

A

Hypertext transfer protocol. Used for transferring data over the Internet btn server and the Websites

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Http requests

A

Http method:define the type of operation the client wants to perform on the server.it includes get, post, put delete
Http header:
Url+parameters
Message body

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is www

A

Is the combination of all resources and users on the Internet that use html lang.
Enables data and info sharing over the Internet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an IP(Internet protocol)

A

Is the identification no of every computer directly connected to the Internet. It consists of 4 groups of eight digit binary no.
Identify the host or network interface and providing the location address

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is DNS

A

Is the system that helps to segment the Internet space,name and ensure communication btn segments.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the <html> element do?

A

It defines the structure and layout of the page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

<head>
</head>

A

Is a container for meta data. And its not directly displayed in the wep page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

<body>
</body>

A

Contains the contents of the html doc that display on the Web page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

<title>
</title>

A

It’s displayed in the browsers bar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

<div>
</div>

A

It’s used to group together other html elements and styling.
It’s creates layout structure and divides the content of a web page in a section

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Span

A

Is an inline container used for styling or formatting a specific portion of text over the block of text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

<p>
</p>

A

For organising content of a Web page. It creates new line but and after the text it contains

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Head

A

It’s provide structure and hierarchy of contents to the webpage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Img

A

Insert and image into html doc . Self closing tag. It has src and alt attribute

17
Q

<a></a>

A

It creates hyperlink. Allow users to navigate the webpage. It contains href attribute

18
Q

Table

A

Display data in row and columns. It includes tr th and td attributes

19
Q

Form

A

To collect user input. Includes button and checkbox

20
Q

Button

A

It creates an applicable button

21
Q

Input

A

Allow users to input data

22
Q

Ol li and ul

A

Ordered list, list item and unordered list

23
Q

Br

A

Used to insert a line break in the text of an html doc. It’s a self closing tag

24
Q

Specifity

A

Inline 1000
#Id 100
.class 10
Tag, elements 1
* 0