Tribute Page - Build a Tribute Page

Tell us what’s happening:
Describe your issue in detail here.
Hello, i have a problem but it’s not with coding…
When i type all the codes in my screen i don’t see nothink in the preview… i just can’t understand why… maybe i got some problem with code i’m not sure about that… i got a message: Preview | Tribute Page: Build a Tribute Page | freeCodeCamp.org i tryed with other browsers and i have the same problem.
I can’t find the solution for that problem… and it’s very difficult to code without see nothink in the preview… Maybe it’s my fault i don’t know… Thanks a lot…

Your code so far

<!-- file: index.html -->
<link rel="stylesheet" href="styles.css">
<!doctype html>
<html lang="en">
<head>
  <meta name="viewport" content="width=device=width,initial-scale1"></meta>
  <meta charset="UTF-8"></meta>
</head>
<main>
<body>
<h1><title>CHESTER BENIGTON></title></h1>
</main>
</body>
</html>






 

/* file: styles.css */

Your browser information:

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

Challenge: Tribute Page - Build a Tribute Page

Link to the challenge:

the message is: About::blanck

i changed some thinks but still got this problem…

What would you like to see. There is nothing to see in your code yet.

  • the <link rel="stylesheet" href="styles.css"> goes within head element
  • the content="width=device=width,initial-scale1"></meta> is not valid. The meta element is self-closing. You don’t need the closing </meta> tag. The “initial-scale” is equal to 1.
  • <title>CHESTER BENIGTON></title> element goes into head element. The ‘title’ is what you see in the browser’s tab as a title.
  • the ‘main’ element should be found within ‘body’ element

it’s fine! it was my bad! Thanks a lot… My head was saturated!
I find all the solutions…!
Sorry :slight_smile: and thanks you a lot!

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.