0
How to add images in html?
How to add borders in html?
4 Answers
+ 1
<img src="filename.extention">
make sure that the image is in the same directory as the HTML file.
if the image is in a different directory then src="directory_name/filename.extention"
0
<html>
<head>
<title>first page</title>
</head>
<body>
<img src="http://www.sololearn.com/images/tree.jpg "(any image address link) alt="" />
</body>
</html>
- 1
đ