Design a Business Card - Design a Business Card

Tell us what’s happening:

my example isn’t loading it is showing blank page even after refreshing the page

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="styles.css">
<head>
    <meta charset="utf-8">
    <title>Business Card</title>
</head>

<body>

</body>

</html>
/* file: styles.css */
body{
  background-color:rosybrown;
  font:Arial,sans-serif;
}
p{
  margin-top:5px;
  margin-bottom:5px;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Design a Business Card - Design a Business Card

It may be because your code does not have anything in it to show yet. Try adding something in the body like <h1>Test</h1>, and see if that works. Is that the case?