Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Lesson 11 , i cannot move forward anymore!

I am Writing the code and its running too, yet cannot go forward and I tired to see the dialog box which is appearing at the botton , it redirects me to Erorr 404!
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<h1>TOUCHY TOUCHY PLEASE!!</h1>
<img src="URL"/>
<a href="URL"> CLICKY!! </a>
<p>Clicking on Image will open new webpage</p>
</body>
</html>
by

1 Answer

iamabhishek
If you mean lesson 11 of level 1 of HTML course, then this is the correct code:

<!doctype html>
<html>
<head>
<title></title>
</head>
<body>
<h1>Head 1</h1>
<p>P 1</p>
<h2>Head 2</h2>

<h3>Head 3</h3>
<!-- this is a comment -->
<h4>Head 4</h4>
<p><b>Hello</b></p>
<p><strong>Hello</strong></p>
<p><i>Hello</i></p>
<p><em>Hello</em></p>
<p><small>Hello</small></p>
<p><u>Hello</u></p>
<hr>
<h5>Head 5</h5>
<br>
<a href="http://www.studytonight.com";>
<img src="https://static.studytonight.com/css/resource.v3/icons/studytonight/svg/st-logo-dark.svg";></a>
</body>
</html>

Login / Signup to Answer the Question.