Tell us what’s happening:
guys can you tell me what’s happening here I don’t understand
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cafe Menu</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<h1>Cafe Menu</h1>
<h2>Coffee</h2>
<p>French Roast</p>
<p>Colombian</p>
<p>Espresso</p>
<h2>Tea</h2>
<p>Earl Grey</p>
<p>Green</p>
<p>Chai</p>
</body>
</html>
/* file: styles.css */
/* User Editable Region */
h1, h2, p {
text-align: center;
}
body {
background-color: brown;
color: burlywood;
}
h1 {
font-family: Impact, serif;
}
h2 {
font-family: Verdana, sans-serif;
}
/* User Editable Region */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0
Challenge Information:
Design a Cafe Menu - Step 15