- index.html
- style.css
HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML basics</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Types of tags
Each HTML tag has its own meaning and purpose.
Some tags are service tags and are never visible on the page.
Other tags are used for text formatting and their influence is quite noticeable.
</body>
</html>
CSS
/* This is how you can specify the font for the entire document */
body {
font-family: "Georgia", serif;
}
You have moved to another page
GoalsCompleted
0
Practice using paired tags. Use them to mark up unformatted text in the editor and watch the changes in the browser.
- Wrap into
h1
tag headingTypes of tags
. - Wrap into a separate
p
tag each sentence after the title. - Wrap one word into a
em
tag.