HTML

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/56

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:23 PM on 5/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

57 Terms

1
New cards

What is the Internet?

The Internet is a network of terminal devices (like computers and mobile phones) and network devices (like routers and cables) that enables communication and services such as the World Wide Web and email.

2
New cards

What is the Web?

The Web is a service of the Internet that involves web servers (service providers) and web clients (service consumers) communicating with each other.

3
New cards

What is a Web Server?

A Web Server is software and hardware that runs on the Internet, often in a data center, to serve web content.

4
New cards

What is a Web Client?

A Web Client is typically browser software, such as Chrome, Internet Explorer, or Firefox, running on PCs or mobile devices.

5
New cards

What protocol do web servers and clients use to communicate?

They use the HTTP Protocol for request and response communication.

6
New cards

What does URL stand for?

URL stands for Universal Resource Locator.

7
New cards

What is a typical structure of a URL?

A typical URL includes a protocol (e.g., http://), a domain name (e.g., search.rutgers.edu), a path to the resource (e.g., /people.html), and an optional query string (e.g., ?q=chandu).

8
New cards

What are the main steps in a typical web transaction?

1. User types in a URL. 2. Browser sends an HTTP request to the server. 3. Server processes the request and loads the resource. 4. Server sends an HTTP response back. 5. Browser displays the web page.

9
New cards

What are the three main technologies used to create web pages?

HTML (HyperText Markup Language), CSS (Cascading Style Sheets), and JavaScript.

10
New cards

What is HTML?

HTML is a tag-based language used to encode the content of a web page.

11
New cards

What is CSS?

CSS is a declarative language used to control the rendering and visual appearance of a web page.

12
New cards

What is JavaScript?

JavaScript is a programming language used to handle user interactions on a web page.

13
New cards

What does a typical HTML document start with?

A typical HTML document starts with the declaration.

14
New cards

What are the two main sections of an HTML document?

The two main sections are the head section and the body section.

15
New cards

<head>

contains meta-information about the document, such as the title.

16
New cards

<body>

contains the content of the web page that is displayed to users.

17
New cards

<h1>

HTML tag that provides context information indicating a heading.

18
New cards

Meta tags

Tags that provide meta information about the HTML document.

19
New cards

<meta charset="UTF-8" />

Specifies the character encoding for the HTML document, supporting all characters for all human languages.

20
New cards

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

Sets the width of the webpage to the device's width and the initial scale to 100%.

21
New cards

<meta name="Description" content="This site about cakes"/>

Provides a description that appears in search results under the webpage.

22
New cards

<meta name="keywords" content="" />

Specifies keywords that help search engines understand the content of the webpage.

23
New cards

<ul> and <li>

Tags used to encode a list of items, with

    for unordered lists and
  • for list items.

24
New cards

<div>

Tag used to group relevant HTML elements together into a single module.

25
New cards

<span>

Tag used to encode a segment of text or inline element within larger data.

26
New cards

<table>

Tag used to encode tabular data.

27
New cards

<tr>

Tag used to define a table row.

28
New cards

<td>

Tag used to define a table cell.

29
New cards

Web server and client communication

Occurs in both directions, allowing for downloading and uploading of data.

30
New cards

HTML form and input tags

Used to collect user input and submit it to the server for processing.

31
New cards

Login form

A common web form that includes username and password input fields and a submit button.

32
New cards

id attribute

Used to uniquely identify a tag or element within a page.

33
New cards

class attribute

Used to identify a group of elements that share the same visual effects.

34
New cards

CSS

Cascading Style Sheets, used to control the appearance of HTML content.

35
New cards

the default homepage file for a website

Index.html

36
New cards

the default homepage file when using ASP.NET

default.aspx

37
New cards

Domain Name Server (DNS

looks up the server IP address where the website is hosted and directs the request to that server.

38
New cards

What file does the browser look for in the root folder to load a website?

index.html

39
New cards

What is the significance of file naming in web development?

Capitalization and spaces matter; a file named Index.html is not the same as index.html.

40
New cards

What is the best practice for naming files in web development?

Use all lowercase letters and avoid spaces in filenames.

41
New cards

What happens if a filename contains spaces?

Servers interpret blank spaces as %20 in URLs.

42
New cards

What are absolute links?

Full web addresses that include the complete path and protocol (e.g., http:// or https://).

43
New cards

What are relative links?

Links that point to local content in your project directory, specifying the file name and folder structure.

44
New cards

How do you create an anchor link?

By creating an anchor at a specific subsection of the page using .

45
New cards

<strong>

It is used to indicate strong importance or emphasis in text.

46
New cards

<blockquote>

To mark long quotations or testimonials from another source.

47
New cards

<header>

Introductory material typically appearing at the beginning of a web page.

48
New cards

<footer>

Author information, copyright information, navigation, etc.

49
New cards

<section>

divides long web documents into thematic sections.

50
New cards

<article>

Self-contained works that could stand alone or be reused in a different context.

51
New cards

<nav>

Navigation links within a web page.

52
New cards

What is the purpose of the target attribute in anchor links?

To specify how the linked document will be opened (e.g., in the same tab or a new tab).

53
New cards

What does the rel attribute do in anchor links?

Defines the relationship between the current document and the linked document.

54
New cards

What does the nofollow value in the rel attribute do?

Prevents search engines from following the link.

55
New cards

What is an email link format in HTML?

<a href='mailto:<email>'>My email</a>

56
New cards

What is the difference between <q> and <blockquote>?

<q> is for short quotations, while <blockquote> is for long quotations.

57
New cards

<main>

The main content of a document, excluding headers, footers, and sidebars.