HTML/CSS, HTML & CSS

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

1/36

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.

37 Terms

1
New cards

Where do you add the code to add the title (the tab at the top) into your HTML page?

<title> </title>

2
New cards

<h1> and <p> are examples of what?

tags

3
New cards

What is the full intro tag to an HTML document?

<!DOCTYPE HTML>

4
New cards

tag for adding an image


<img src=" " alt=" ">

5
New cards

What symbols indicate that text is a comment and not actual code?

<!-- -->

6
New cards

All code that will show up goes between these tags

<body> </body>

7
New cards

Which symbol indicates a closing tag in HTML?

/

8
New cards

numbered list

<ol> </ol>

9
New cards

bulleted list

<ul> </ul>

10
New cards

list item


<li> </li>

11
New cards

What's the difference between the headings h1 - h6?

the lower the number the bigger the heading

12
New cards

What does rgb stand for?

red, green, blue

13
New cards

What's the highest value of an rgb number?

255

14
New cards

add a hyperlink to your site

<a href="www.url.com"> My link </a>

15
New cards

What's the relationship between HTML and CSS?

HTML adds the content and structure. CSS adds the style.

16
New cards

The container for all HTML markup

<html></html>

17
New cards

Contains the information about the webpage. Does not show in the webpages.

<head></head>

18
New cards

The text to display on the browser tab.

<title></title>

<p>&lt;title&gt;&lt;/title&gt;</p>
19
New cards
<p>The container for the content that will be displayed on the webpage.</p>

The container for the content that will be displayed on the webpage.

<body> </body>

20
New cards

The biggest heading.

<h1></h1>

<p>&lt;h1&gt;&lt;/h1&gt;</p>
21
New cards

A subheading, the second biggest

<h2></h2>

22
New cards
<p>A paragraph.</p>

A paragraph.

<p></p>

23
New cards
<p>Bold text.</p>

Bold text.

<b></b>

24
New cards

Italic or emphasized text.

<i> </i>

<p>&lt;i&gt; &lt;/i&gt;</p>
25
New cards
<p>Hyperlinked text.</p>

Hyperlinked text.

<a href="https://www.google.com">a link to Google</a>

26
New cards

A single bullet in a list.

<li></li>

<p>&lt;li&gt;&lt;/li&gt;</p>
27
New cards
<p>A container for a bullet-point list.</p>

A container for a bullet-point list.

<ul></ul>

28
New cards

A container for a numbered list.

<ol> </ol>

<p>&lt;ol&gt; &lt;/ol&gt;</p>
29
New cards

Creates a table

<table></table>

30
New cards

table row

<tr></tr>

31
New cards

Defines a cell in a table.

<td></td>

32
New cards

Defines a header cell in a table

<th></th>

33
New cards

<a href = "www.killiingit.com">
What is the attribute?

href

34
New cards

<a href = "www.killiingit.com">
What is the element?

a

35
New cards

<a href = "www.killiingit.com">
What is the tag?

<a></a>

36
New cards

<a href = "www.killiingit.com">
What is the value?

37
New cards

These modify properties of an HTML tag

attributes