- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test: Cat tours travel agency gallery</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Travel Gallery</h1>
<p>
The excuse <q>I have paws</q> does not work anymore.<br>
Travel with our agency. Meow.
</p>
<div class="gallery">
<!-- Add an image here -->
</div>
</body>
</html>
CSS
body {
width: 550px;
margin: 0;
padding: 0 10px;
font-family: "Arial", sans-serif;
font-size: 16px;
line-height: 20px;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.