- index.html
- style.css
HTML
<!DOCTYPE html>
<html>
<head>
<title>Just Cupcake</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1><title> tag</h1>
<img src="keks.jpg" alt="">
<p>This tag indicates the title of the page.</p>
<p>It makes it very easy to navigate between multiple open tabs.</p>
<p>Instructor Cupcake recommends using simple page titles.</p>
</body>
</html>
CSS
body {
margin: 20px;
font-size: 18px;
line-height: 24px;
}
h1 {
font-size: 52px;
line-height: 64px;
font-family: "Monaco", "Courier", monospace;
color: #618ad2;
}
img {
float: right;
width: 200px;
margin-left: 20px;
border-radius: 10px;
}
You have moved to another page
GoalsCompleted
0
- Change the page title from
Just Cupcake
toInstructor Cupcake
.