Monday, April 7, 2014

How to Insert Image into HTML File

Open your html file and write line of code below
<img src="path/to/image" />

example:

<html>
   <head>
     <title>Your Site Title</title>
   </head>
   <body>
     <img src="example.jpg" />
   </body>
</html>

No comments:

Post a Comment