xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to add image in an HTML page
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Image in HTML Page</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>Example of Image in a Webpage</h1> <hr/> <!-- <img> is used to add image in a page --> <img src="logoimage.jpg" alt="xFactor School Logo"/> <p> <img/> tag is used to add image in a page </p> <p> src="logoimage.jpg" is source path of the image </p> </body> </html>