- index.html
- style.css
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: Mark up a webpage</title>
<link rel="stylesheet" href="challenge.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
Introduction
This course will teach you the basics of HTML and CSS.
Chapter 1
In this chapter, your instructor Muffin will introduce you to the basics of web layout on the basis of a small landing page.
Chapter 2
We will begin to prepare the markup for the blog page, and we will start to understand what tags are used in the markup and what these tags do.
The best course
</body>
</html>
CSS
/* Quote styles */
.cite {
padding: 5px 10px;
color: #ffffff;
font-style: italic;
background-color: #9999d6;
border-left: 2px solid #484ace;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.