HTML

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

1/16

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.

17 Terms

1
New cards

HTML

hyper text markup language

  • text file with special markers

  • coding language to make webpages

2
New cards

Tags

special markers that format text

3
New cards

<html>

tells the browser the language is html

4
New cards

<body>

main content of the website

5
New cards

closing tags

forward slash

e.g. </html>

6
New cards

<H1>

preformatted heading tag

  • decreases in size as number increases.

  • enters a new line below the text

1 is largest, 6 is smallest

7
New cards

<p>

paragraph, presses enter

  • starts new paragraph with new empty line

8
New cards

carriage return

enter

9
New cards

<br>

line break

  • no new line is added, immeadiately moves to the new line

10
New cards

<a href>

adding hyperlinks

  • a is the anchor

  • href is the command

  • add ‘=’ to show the start of an address

11
New cards

basic formatting

<B> - bold

<I>- italic

<U>- underline

12
New cards

<font face>

changing font

  • add ‘=’ to show beginning of font name

13
New cards

<FONT COLOR>

changing font color

  • uses hexcolor

14
New cards

<FONT SIZE>

changes size

  • opposite to headings, 6 is largest and 1 is smallest

15
New cards

<BODY

16
New cards

<div align = (position)>

changes positioning of text

17
New cards

<IMG SRC=”image.jpg”>

adds an image

  • .jpg is the type of file

  • the image address tells the code the location of the file