You are on page 1of 25

BRIAR ROSE

CODING CLASS
OUR SECOND SESSION
Welcome to the
coding class
Hello! I’m Tr.
Briton.
Software Engineer
Game Developer
Clouds Practitioner
What did we
learn last week?
We got to understand what coding is,
different languages...i.e (HTML,
Javascript, Python, Java etc)
We got into
learning the
basics of HTML

Where we learnt it stands for


HYPER TEXT MARKUP
LANGUAGE.
Do we
remember the
structure of an
HTML code?
To start HTML, we said and wrote:
<html>
<head>
<title>Our First Code</title>
</head>
</html>
For today, we will learn
another aspect of HTML
WORKING INSIDE THE
BLANK PAGE WE HAD
For today, we'll work
on the blank page
Inside the blank page, is the body

<body>
</body>
HEADING
<h1>First heading</h1>
h1
h2
.
.
h6
<h1>
My First Heading
</h1>
HOW'S IT?
SO NEXT IS HOW WRITE A
PARAGRAPH IN THE BODY
TRY WRITE ANYTHING
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

You might also like