-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimages.html
58 lines (53 loc) · 2.89 KB
/
images.html
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
55
56
57
58
<!doctype html>
<!--suppress ALL -->
<html lang="en">
<head>
<style>
img{
-webkit-filter: blur(4px);
}
img:hover{
-webkit-filter: blur(0px);
}
</style>
<link rel="shortcut icon" href="static/images/favicon.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Images</title>
</head>
<body>
<h1>
<a href="headings.html">Headings</a>
<br><br>
<a href="images.html">Images</a>
<br><br>
<a href="intro.html">Intro</a>
<br><br>
<a href="links.html">Links</a>
</h1>
<h1 STYLE="color: blueviolet">MY GALLERY</h1>
<marquee behavior="alternate" direction="right"><img src="static/images/test 3.jpeg" height="168" width="299"/></marquee>
<marquee behavior="alternate" direction="left"><img src="static/images/test 4.jpeg" height="168" width="300"/></marquee>
<marquee behavior="alternate" direction="right"><img src="static/images/testing 8.jpeg" height="168" width="300"/></marquee>
<marquee behavior="alternate" direction="left"><img src="static/images/test 5.jpeg" height="168" width="300"/></marquee>
<marquee behavior="scroll" direction="up"><img src="static/images/test 2.jpeg" height="168" width="300"/></marquee>
<marquee behavior="scroll" direction="down"><img src="static/images/testing 6.jpeg" height="300" width="300"/></marquee>
<marquee behavior="scroll" direction="up"><img src="static/images/testing 7.jpeg" height="300" width="299"/></marquee>
<marquee behavior="scroll" direction="up"><img src="static/images/testing 8.jpeg" height="168" width="300" alt="good"/></marquee>
<marquee behavior="scroll" direction="down"><img src="static/images/testing 9.jpeg" height="168" width="300"/></marquee>
<img src="static/images/testing%2011.jpeg" alt="" width="297" height="170">
<img src="static/images/testing%2013.jpeg" alt="" width="284" height="177">
<img src="static/images/testing%2010.jpeg" alt="" width="300" height="168">
<img src="static/images/pexels-maris-rhamdani-714975-1552173.jpg" alt="" width="5784" height="3856">
<img src="static/images/pexels-pixabay-54627.jpg" alt="" width="2380" height="3583">
<img src="static/images/pexels-rickyrecap-2627315.jpg" alt="" width="3928" height="5892">
<img src="static/images/testing%2011.jpeg" alt="good" width="297" height="170">
<img src="static/images/testing%2013.jpeg" alt="good" width="284" height="177">
<img src="static/images/testing%2010.jpeg" alt="good" width="300" height="168">
<img src="static/images/pexels-maris-rhamdani-714975-1552173.jpg" alt="" width="5784" height="3856">
<img src="static/images/pexels-pixabay-54627.jpg" alt="good" width="2380" height="3583">
<img src="static/images/pexels-rickyrecap-2627315.jpg" alt="good" width="3928" height="5892">
</body>
</html>