My issue
this is a heading
<pthis is a paragraph.
My code
// your code goes here
Learning course: Projects using HTML / CSS
Problem Link: Build Navigation Bar Practice Problem in Projects using HTML / CSS
this is a paragraph.
// your code goes here
Learning course: Projects using HTML / CSS
Problem Link: Build Navigation Bar Practice Problem in Projects using HTML / CSS
Hello, there is a minor mistake in the program.
At the paragraph tag
tag, you haven’t properly closed it and created a duplicated paragrah.
The following code will work properly.
<html>
<body>
<h1>this is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>