HTML PRELIM

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

1/43

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.

44 Terms

1
New cards

HTML

stands for Hyper Text Markup Language.

2
New cards

HTML

is the standard markup language for creating Web pages.

It consists of series of elements.

3
New cards

WEB BROWSER

is a software application used to access and view web page and websites, like google chrome, mozilla, firefox and etc.

4
New cards

WEB PAGE

is a single document on the web, typically written in HTML and designed to be viewed in a web browser.

5
New cards

WEB SITE

is a collection of related web pages that are typically identified by a common domain name and published on at least one web server.

6
New cards

HTML ELEMENT

is defined by a start tag, some content and end tag.

7
New cards

HTML TAG

are the commands in HTML — like verbs in a sentence. They tell the browser what each piece of content is.

8
New cards

<!DOCTYPE html>

declaration defines that this document is an HTML5 document.

9
New cards

<html>

element is the root element of an HTML page.

10
New cards

<head>

element contains meta information about the HTML page.

11
New cards

<title>

element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab).

12
New cards

<body>

element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

13
New cards

<h1>

element defines a large heading

14
New cards

<p>

element defines a paragraph.

15
New cards

<meta>

Provides metadata such as descriptions, keywords and author.

16
New cards

<link>

Used to link external resources like CSS files.

17
New cards

<style>

Contains internal CSS for styling the document.

18
New cards

<script>

Contains or links to JavaScript code.

19
New cards

<body>

Contains the content of the document.

20
New cards

<header>

Defines a header for a document or section.

21
New cards

<nav>

Defines a set of navigation links.

22
New cards

<section>

Defines a section in the document.

23
New cards

<div>

Defines a division or section in a document.

24
New cards

<footer>

Defines a footer for a document or section.

25
New cards

<a>

Defines a hyperlink.

26
New cards

<img>

Embeds an image.

27
New cards

<ul>

Defines an unordered list.

28
New cards

<ol>

Defines an ordered list.

29
New cards

<li>

Defines a list item.

30
New cards

<span>

Defines a section in a document for styling purposes.

31
New cards

<form>

Defines an HTML form for user input.

32
New cards

<input>

defines an input control within a form.

33
New cards

<button>

defines a clickable button.

34
New cards

<label>

defines a label for an <input> element.

35
New cards

<textarea>

defines a multi-line text input control.

36
New cards

<select>

defines a drop-down list.

37
New cards

<option>

defines an option in a drop-down list.

38
New cards

<table>

defines a table.

39
New cards

<tr>

defines a row in a table.

40
New cards

<td>

defines a cell in a table.

41
New cards

<th>

defines a header cell in a table.

42
New cards

<thead>

groups the header content in a table.

43
New cards

<tbody>

groups the body content in a table.

44
New cards

<tfoot>

groups the footer content in a table.