forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doggos.html
26 lines (26 loc) · 1.24 KB
/
doggos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>doggo's</title>
<style>
img {width:33%;height:auto;float:left;max-width:235px;}
.grayscale {-webkit-filter: grayscale(100%);filter: grayscale(100%);}
.huerotate0 {-webkit-filter: hue-rotate(90deg);filter: hue-rotate(90deg);}
.huerotate1 {-webkit-filter: hue-rotate(90deg);filter: hue-rotate(90deg);}
.huerotate2 {-webkit-filter: hue-rotate(180deg);filter: hue-rotate(180deg);}
.huerotate3 {-webkit-filter: hue-rotate(270deg);filter: hue-rotate(270deg);}
.saturate {-webkit-filter: saturate(7); filter: saturate(7);}
</style>
</head>
<body>
<img src="images/doggos/4.gif" width="300" height="300">
<img class="grayscale" src="images/doggos/4.gif" width="300" height="300">
<img class="huerotate1" src="images/doggos/4.gif" width="300" height="300">
<img class="huerotate2" src="images/doggos/4.gif" width="300" height="300">
<img class="huerotate3" src="images/doggos/4.gif" width="300" height="300">
<img class="saturate" src="images/doggos/4.gif" width="300" height="300">
</body>
</html>