- index.html
- style.css
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The mystery of the CSS editor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>The mystery of the CSS editor</h1>
<p>Our mini-browser uses the code you write in the CSS editor and invisibly adds it to the HTML code of the page using the <style> tag.</p>
</body>
</html>
CSS
/*
h1 {
font-size: 52px;
line-height: 64px;
font-family: "Monaco", "Courier", monospace;
color: #618ad2;
}
*/
You have moved to another page
GoalsCompleted
0
- Uncomment the styles in the CSS editor. To do this, remove the
/*
and*/
characters..