- index.html
- style.css
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="windows-1259">
<title>HTML page encoding</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Encoding</h1>
<p>When the document encoding is set incorrectly, some characters are displayed as "hieroglyphics" and some are not.</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;
}
You have moved to another page
GoalsCompleted
0
Right now the encoding is set incorrectly, so the text in the mini-browser does not display correctly.
- Set the correct encoding:
utf-8
.