-
Notifications
You must be signed in to change notification settings - Fork 0
/
theboxerchallenge.html
37 lines (30 loc) · 996 Bytes
/
theboxerchallenge.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: The boxer model</title>
<style>
body {
font-family: cursive;
}
.photo-gallery {
background: rgb(255, 254, 217);
margin-left: 50%;
margin-right: 50%;
}
.photo {
width: 200px;
border: 10px solid black;
margin: 5px;
}
</style>
</head>
<body>
<h1>Boxers are beautiful?</h1>
<div class="photo-gallery">
<img class="photo" src="https://www.kasandbox.org/programming-images/animals/boxer-getting-tan.png">
<img class="photo" src="https://www.kasandbox.org/programming-images/animals/boxer-laying-down.png">
<img class="photo" src="https://www.kasandbox.org/programming-images/animals/boxer-wagging-tongue.png">
</div>
</body>
</html>