<head>
<title>
Headings & Paragraphs
</title>
</head>
<body>
<h1>
My God Reigns
</h>
<p>I will worship You forever and love You forever</p><h3><p>Jesus, Jesu, Jesu o, Jesu ooooooo.</p><h5><p>Jeus is Alpha, Alpha and Omega, so I'l praise Him for He's Alpha, Alpha and Omega.</p><h2><p>Eseun Olu</p><h4>Idiebube Jehovah Rapha Shamammah Ewo</p><h6>Oyomale IbuChukwu dike</p></h2></h4></h6>
</body>
1 Like
You have header tags inside paragraph tags and paragraph tags inside header tags,
You can’t mix all the tags together
<head>
<title>
Headings & Paragraphs
</title>
</head>
<body>
<h1>
My God Reigns
</h1>
<p>I will worship You forever and love You forever</p>
<h3> some text </h3>
<p>Jesus, Jesu, Jesu o, Jesu ooooooo.</p>
<p>Jeus is Alpha, Alpha and Omega, so I'l praise Him for He's Alpha, Alpha and Omega.</p>
<p>Eseun Olu</p>
<h4>Idiebube Jehovah Rapha Shamammah Ewo</h4>
<h6>Oyomale IbuChukwu dike</h6>
</body>
1 Like
and your h1 closing tag is missing the 1
1 Like