-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex19.html
56 lines (50 loc) · 1.68 KB
/
index19.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: A classy gallery</title>
<style>
body {
font-family: cursive;
}
.image-small {
border-style: dashed;color: #a8a8b1;
width: 450px;
size: 200px;
background-color: #7a12d6;
}
.medium {
width: 450px;
size: 200px;
height: 250px;
}
.black-frame {
width: 200px;
size: 150px;
height: 200px;
}
.white {
border-style: dotted;color: aqua;
background-color: hsl(258, 84%, 45%);
}
.silver-frame {
border: 10px groove rgb(220, 56, 56);
width: 300px;
size: 250px;
background-color: #7a12d6;
}
.shell {
border: 10px groove rgb(220, 56, 56);
width: 300px;
size: 250px;
background-color: rgb(214, 18, 18);
}
</style>
</head>
<body>
<h1>A classy gallery</h1>
<img class="silver-frame shell" src="https://www.kasandbox.org/programming-images/animals/cat.png">
<img class="black-frame white" src="https://www.kasandbox.org/programming-images/animals/fox.png">
<img class="image-small medium" src="https://www.kasandbox.org/programming-images/animals/penguins.png">
</body>
</html>