- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Lost in Translation</title>
<link rel="stylesheet" href="langs.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>Привет, мир!</p>
<p>Hello, world!</p>
<p>Hallo, Welt!</p>
<p>Hei, maailma!</p>
<p>Bonjour, le monde!</p>
</body>
</html>
CSS
body {
width: 340px;
margin: 0;
padding: 0 20px;
font-size: 28px;
font-family: "Arial", sans-serif;
color: black;
}
p {
margin: 5px;
padding: 12px;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.