Friday, 22 September 2017

How to apply image icon on top of web page and make image gallery without Css

How to apply image icon on top of web page and make image gallery without Css

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Images in html</title>
<link href="img/phone.png" rel="shortcut icon"  />

</head>

<body>

<a href="img/1.jpg" target="_blank"> <img src="img/1.jpg" width="200px" height="200px"/> </a>
<img src="img/2.jpg" width="200px" height="200px"/>
<img src="img/3.jpg" width="200px" height="200px"/>
<img src="img/4.jpg" width="200px" height="200px"/>
<img src="img/1.jpg" width="200px" height="200px"/>
<img src="img/2.jpg" width="200px" height="200px"/>
<img src="img/3.jpg" width="200px" height="200px"/>
<img src="img/4.jpg" width="200px" height="200px"/>
<img src="img/1.jpg" width="200px" height="200px"/>
<img src="img/2.jpg" width="200px" height="200px"/>
<img src="img/3.jpg" width="200px" height="200px"/>
<img src="img/4.jpg" width="200px" height="200px"/>
<img src="img/1.jpg" width="200px" height="200px"/>
<img src="img/2.jpg" width="200px" height="200px"/>
<img src="img/3.jpg" width="200px" height="200px"/>
<img src="img/4.jpg" width="200px" height="200px"/>




</body>
</html>

No comments:

Post a Comment

Pass Dynamically Added Html Table Records List To Controller In Asp.net MVC

Controller Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using ...