Home  >  Q&A  >  body text

Tried everything but still the HTML content is not showing

Basically, the content of the html document will not display anything on the browser. This HTML document I made is linked from another html file.

When I open this HTML file on my browser, it is blank and shows nothing when there is explicit code in it. I've saved a few times but every update still doesn't show the content.

I tried updating and saving before opening, and searched on google what the problem was and the solution. Still nothing related to my problem. I'm expecting the browser to eventually do HTML code, but still nothing. So I checked out Stack Overflow and here I am.

Is there any solution?

<!doctype html>

<html>

<head>
  <title>Aa
    <title>
</head>

<body>
  <h1><i>Aa<i></h1>
<p>Aa</p>
           
    </body>
</html>

P粉786432579P粉786432579156 days ago3460

reply all(1)I'll reply

  • P粉343408929

    P粉3434089292024-04-05 12:23:21

    <title> The tag was not closed properly, you are missing /:

    <Title>Aa</title>

    reply
    0
  • Cancelreply