Search Header Logo
Intro to HTML 1

Intro to HTML 1

Assessment

Presentation

Computers

9th - 12th Grade

Practice Problem

Easy

Used 8+ times

FREE Resource

18 Slides • 7 Questions

1

media
media
media

Intro to HTML

How Programmers Create Basic

Websites

2

media
media
media

LT- I will learn what
language is used to
make most websites.

2

SC- I can read a source code and find the different parts of a website in the code.

3

Dropdown

The learning target for this lesson is, "I will learn what ​
is used to make most websites."

4

media

WHAT IS HTML?

The language used to create a website

Allows computers to connect to one another (Hypertext)

Tells the computer how to display the information

3

5

media
media

What is HTML?

HTML is a universal language understood
by people all over the world.

Someone in China can write a code for
a website and someone in Brazil can
understand it.

It was developed by Tim Berners-Lee
in 1990.

He wanted a way for different college
professors to be able to read each other's
documents.

This laid the foundation for the World
Wide Web (WWW.....)

Tim Berners-Lee

6

Multiple Choice

What does HTML allow computers to do?

1

Store lots of data

2


Connect to one another (Hypertext)

3


Run operating systems

4


Run operating systems

7

Multiple Choice

HTML was developed by Tim Berners-Lee in the year____.

1

1985

2

1987

3

1990

4

2000

8

media
media
media

What does H-T-M-L stand for?

HyperText Markup Language (HTML)
It determines what is on a webpage.
It tells Google Chrome what to display.
Google Chrome is called a Browser.

It is not difficult once you learn the language.
It does not take expensive software to create a webpage. (It's free)

9

media

How are Websites Coded?

Click on the picture to view the video.

10

Multiple Choice

What does HTML stand for?

1

Hypertile Mashup Language

2

Hyperstyle Markup Language

3

Hypotext Markdown Language

4

Hypertext Markup Language

11

media
media

HTML Structure

Syntaxis a set of rules on how to put words and phrases together.
For example, if you speak English, you begin a sentence with a capital
letter and end a sentence with a period.
That is an example of using proper syntax.
You must use proper syntax if you want google chrome to display your
website the way you intended.

12

media

Tags and Attributes

There are three parts to writing code in HTML: Tags,
Content, and Attributes

Tags tell the computer what you want to display.

Content is what you want people to see on the computer
screen.

Attributes describe how you want the content to look.

13

Match

Match the following

Tags

Content

Attributes

instructs what you want to display

what you want people to see

how you want it to look

14

media

How they work

Tags have two parts: The opening and the
closing.

Tags are enclosed in the angle brackets found
above your comma and period on the keyboard.
They look like this.

<html>

Opening Bracket

Closing Bracket

Tag Name

15

media

Open and Close

When a tag is created, you must open it and
close it.
A closing tag has a slash in it.
This is called creating a “Container”

<html>
</html>

Opening Tag

Closing Tag

16

Multiple Choice

Type the closing tag for the <body> of a website.

1

/body/

2

\body\

3

-body-

4

</body>

17

media

Attributes

The stuff that goes between the tags is called content.

This is usually words or pictures.

Let's look at a heading from a website about dogs.

<h1>All About Dogs</h1>

The content in this case are the words that make up my title.

18

media

Exception

Some tags do not need to be closed. For example, if
you wanted to make a space between your heading
and body, you can create a break in your page, and
you don't have to close it.

We’ll talk more about this later.

<br>

19

media

First Things First!

A DOCTYPE declaration must be specified on the first
line of each HTML document:

<!DOCTYPE html>

20

media

Structure

There are three parts to the structure of a basic website that you
need to tell the computer how to display.

<html> You must tell the computer what language you are using.

<head> Contains instructions for the browser to work
properly. Anything in the head is not visible on the webpage.
(Back-End)

<body> The body is the main content of your page. This is what is
displayed on the computer screen. (Front-End)(What do you want
people to know?)

21

media
media

Basic HTML Structure

22

Multiple Select

What are the three main elements of every website?

1

<HTML>

2

<HEAD>

3

<CONTENT>

4

<BODY>

23

media
media

File Extensions
When you create any type of file that a computer

reads, you must tell the computer which program
to use to open the file.

This is called a file extension.

For example, if you type a paper in Microsoft

Word, you can name it myPaper.doc.

The .doc tells the computer that it can read the file

by opening Microsoft Word.

When you save your work in this class, you should

always end the file name with the extension .html

This will tell the computer to use a web browser

(like Google Chrome or Microsoft Edge) to open
the file.

This Photo by Unknown author is
licensed under CC BY-NC.

24

media
media
media

LT- I will learn what
language is used to
make most websites.

17

SC- I can read a source code and find the different parts of a website in the code.

25

media
media

Activity: Viewing the Source Code

Go to your favorite website.
Right-Click on the webpage.
Click on "View Page Source".
Find the <html>, <head>, and <body> tags

What is one other type of tag that you see?
Go to Google Classroom and tell us what you think this other tag
is used for.
Answer the Discussion Board question on Google Classroom.

media
media
media

Intro to HTML

How Programmers Create Basic

Websites

Show answer

Auto Play

Slide 1 / 25

SLIDE