- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mathematical Formulas</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Mathematical Formulas
The formula for the area of a square: a2. The square root of number b is written as √b.
In algebra, indices are also used: x1, x2 are the roots of the equation.
</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.