You are on page 1of 2

Inventor: Tim Berners Lee

HTML: Hyper text markup language


HTTPS: Hyper text transfer protocol

<title>

<html>
<head>
<title> Lesson 1+2 <title>
The head contains information about the webpage (title, imported
fonts, link to css)
<head>
<body>
The body contains the visible content (images, text, videos)
<body>
</html>

Common tags:
<img src = “ link ” />
“Src” is the attribute, and “link” is the value
Opening: <a href = “ link ”> Closing: </a>
Opening: <h1> Closing: </h1>
Opening: <h6> Closing: </h6>
Opening: <p> Closing: </p>
CSS (Cascading Style Sheets ) — What makes a website pretty

Example:
body { (selector)
Background-color: orange; (declaration: property + value)
}
P { (selector)
Font-family: Arial; (declaration: property + value)
}

You might also like