HTML

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

1/11

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.

12 Terms

1
New cards

What are the basic set up tags in html?

  • <html> </html>

  • <head> </head>

  • <title> </title>

  • <body> </body>

2
New cards

What are the paragraph tags?

<p> </p>

3
New cards

What are the heading tags?

  • <h1> </h1> (biggest)

  • <h2> </h2>

  • <h3> </h3> (smallest)

4
New cards

How do you import an image in html?

<img> src = “name of image.gif“ alt = “Smiley face“ height = “42“ width = “42“>

5
New cards

How do you link a website link into html?

<a href= “www.url.com“>link text</a>

6
New cards

What are ordered & unordered list tags?

  • Ordered : <ol> </ol> (numbers)

  • Unordered: <ul> </ul> (bullet points)

  • Each item in a list: <li> </li>

7
New cards

what are the page structure tags?

<div> </div>

8
New cards

What tags do you use to link a CSS file?

<link> </link>

9
New cards

What are tags for changing styles in CSS?

  • background - color;

  • font - family;

  • font - size;

  • height;

  • width;

  • color;

  • border-colour;

  • border-style;

  • border-width;

10
New cards

How do you link your external CSS to your main web page?

<link rel = “stylesheet“ type=”text/css” href=”File Name Of External CSS.css”

11
New cards

What to write if changing CSS of h1 inline?

<h1 style = “____ :_____;“>

12
New cards

What to write if changing CSS of h1 externally?

h1{ “____:_____;” }