- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Basics of Programming</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Basics of Programming
Programming is an exciting task that requires attention to detail and a logical approach.
Algorithms
One of the important aspects of programming is understanding algorithms. For example, here is how a simple code for printing text to the screen might look:
print("Hello, world!")
This is a simple code, but it demonstrates the basics of working with text in Python.
Conclusion
Learning programming begins with simple tasks, which then evolve into more complex projects.
</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.