My issue
How do I display an image in html
Learning course: Learn HTML / CSS
Problem Link: CodeChef: Practical coding for everyone
How do I display an image in html
Learning course: Learn HTML / CSS
Problem Link: CodeChef: Practical coding for everyone
<!--
If you want to put simple image in html then use <img> tag.
-->
Example:- <img src = "img_ball.jpg">
<!--
You can also define height and width of image like <img src = "image.jpg" height = "500" width = "500">
-->
In your given problem link there is no need to display image. Use only some html tag like:
<!--
<h2> :- For heading
<u> :- For underline the selected text
<p> :- For paragraph
<br> :- For break the line or create new line
<i> :- For italic text
-->