-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimageclasses.html
31 lines (30 loc) · 1.03 KB
/
imageclasses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Classes</title>
<style>
.large { width: 400px; height: 400px; }
.medium { width: 275px; height: 275px; }
.small { width: 150px; height: 150px; }
body {
background-image: url("https://picsum.photos/id/350/900");
background-repeat: no-repeat;
background-position: center center;
background-size: 100% 600%;
}
</style>
</head>
<body>
<img src="https://picsum.photos/500/500" class="large"/>
<img src="https://picsum.photos/500/500" class="large"/>
<hr/>
<img src="https://picsum.photos/500/500" class="medium"/>
<img src="https://picsum.photos/500/500" class="medium"/>
<hr/>
<img src="https://picsum.photos/500/500" class="small"/>
<img src="https://picsum.photos/500/500" class="small"/>
<img src="https://picsum.photos/500/500" class="small"/>
</body>
</html>