- Joined
- Apr 19, 2023
- Messages
- 4
- Reaction score
- 0
Hello. I got my coding wrong. The font for the second sentence is supposed to be smaller and in the color green. The last two sentences are supposed to be the aligned to the left and in 12pt font. What did I do wrong?
<!DOCTYPE html>
<html>
<head>
<title>The Monk Diamond</title>
<style>
.header {
background-color: lightblue;
padding: 25px;
text-align: center;
font-size: 18pt;
width: 100%;
height: 25%;
}
.title {
font-size: 14 pt;
text-align: center;
color: gray;
}
.body {
margin: 20px;
}
</style>
</head>
<body>
<div class="header">
The Monk Diamond<br/>
An incredible discovery
<div/>
<br/>
<div class="title">
Stolen diamond found on expedition in Siberia!
<div class="body">
Professor Bairstone and Dr. Day were looking for fossils in Siberia.<br/>
They found the stolen diamond hidden inside a remote cave.
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>The Monk Diamond</title>
<style>
.header {
background-color: lightblue;
padding: 25px;
text-align: center;
font-size: 18pt;
width: 100%;
height: 25%;
}
.title {
font-size: 14 pt;
text-align: center;
color: gray;
}
.body {
margin: 20px;
}
</style>
</head>
<body>
<div class="header">
The Monk Diamond<br/>
An incredible discovery
<div/>
<br/>
<div class="title">
Stolen diamond found on expedition in Siberia!
<div class="body">
Professor Bairstone and Dr. Day were looking for fossils in Siberia.<br/>
They found the stolen diamond hidden inside a remote cave.
</div>
</body>
</html>