W11 WEBPAGE CREATION USING HTML, CSS AND CMS

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

1/28

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.

29 Terms

1
New cards

HTML

  • stands for Hyper Text Markup Language

  • the standard markup language for creating Web pages

  • consists of a series of elements


2
New cards

Tim Berners-Lee

Invented the HTML

3
New cards

HTML5

  • Latest version of HTML

4
New cards

SIMPLE HTML DOCUMENT

DOCTYPE html>

<html>

<head>

<title> Page Title</title>

</head>

<body>

<h1>My First Heading</h1>

<p>My First Paragraph</p>

</body>
<
/html>

5
New cards

<!DOCTYPE html>

Declaration defines that this document is an HTML5 document

6
New cards

<html>

  • Element is the root element of an HTML page

7
New cards

<head>

Element contains meta information about the HTML page


8
New cards

<title>

Element specifies a title for the HTML page (which is shown in the browser’s title bar)

9
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.

10
New cards

<h1>

Element defines a large heading

11
New cards

<p>

Elements defines a paragraph

12
New cards

HTML element

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

Ex. <title> Page Title</title>

<start tag> element content<end tag>

13
New cards

<br>

Empty element (don’t have end tag)

14
New cards

<ul>

Defines an unordered list

15
New cards

<ol>

Defines an ordered list

16
New cards

<li>

Defines a list item

17
New cards

 <h1> to <h6>

Defines HTML headings

18
New cards

<p> </p>

Defines a paragraph

19
New cards

<b>

Defines a bold text

20
New cards

<i>

Defines italic text

21
New cards

<u>

Defines underlined text

22
New cards

HTML attribute

provide additional information about HTML elements.

23
New cards

<a> tag

Defines a hyperlink

24
New cards

href attribute

specifies the URL of the page the link goes to:

(ahrefo*https://www.$schools.com›Visit N3Schools</a>

25
New cards

src attribute: <img> tag

is used to embed an image in an HTML page.

The src attribute specifies the path to the image to be displayed:

26
New cards

Cascading Style Sheets (CSS)

used to format the layout of a webpage.


27
New cards

Inline

by using the style attribute inside HTML elements

28
New cards

Internal

by using a <style> element in the <head> section


29
New cards

External

by using a <link> element to link to an external CSS file