- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Programming and Coding</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Learning Programming
Learning to code is like solving a puzzle. Each step leads to a result, and each result opens a new path.
Code Example:
const greet = () => {
console.log('Hello, world!');
};
greet();
</body>
</html>
CSS
body {
width: 500px;
margin: 0;
padding: 10px;
font-family: "Arial", sans-serif;
font-size: 16px;
line-height: 1.2;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.