-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimageGalary.html
More file actions
54 lines (51 loc) · 1.13 KB
/
imageGalary.html
File metadata and controls
54 lines (51 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!-- example on list tag-->
<DOCTYPE html>
<html lang="en">
<head>
<title> my 13th web page</title>
<link rel="icone" href="id.png"/>
<style>
fieldset{
width:500px;
border-radius:20px;
border:10px solid black;
margin:auto;
text-align:center;
}
legend{
font-size:36px;
font-family:'Harlow Solid';
color:hotpink;
}
img{
width:150px;
height:150px;
border-radius:5px;
}
</style>
</head>
<body>
<!-- image gallary designing-->
<fieldset>
<legend>My Collection</legend>
<a href="image\Sc3.png" >
<img src="image\Sc3.png" >
</a>
<a href="image\dadi.jpg" >
<img src="image\dadi.jpg" >
</a>
<a href="image\pakhi.jpg" >
<img src="image\pakhi.jpg" >
</a>
<a href="image\chhavi.jpg" >
<img src="image\chhavi.jpg" >
</a>
<a href="image\mahi.jpg">
<img src="image\mahi.jpg" >
</a>
<a href="image\bike.jpg">
<img src="image\bike.jpg">
</a>
</fieldset>
</body>
</html>