-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLink2_Squirrel_Cat.html
More file actions
38 lines (37 loc) · 1.36 KB
/
Link2_Squirrel_Cat.html
File metadata and controls
38 lines (37 loc) · 1.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Squirrel & Cat</title>
</head>
<style>
.container{
height:100%;
width:100%;
border: 2px solid black;
display: flex;
background-color:wheat;
flex-wrap: wrap;
justify-content:space-around;
align-items:center;
flex-direction: column;
}
.item{
background-color: azure;
border: 2px solid green;
margin:10px;
padding: 3px;
width: 10%;
height: 10%;
}
</style>
<body style="background-color: aliceblue;">
<h1 style="text-align: center;" >Squirrel & Cat</h1>
<div class="container" >
<div class="item"><img style="width: 100%;height: 100%;" src="https://images.unsplash.com/photo-1518770352423-dce09a3d3307?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80" alt="Squirrel"></div>
<div class="item"><img style="width: 100%;height: 100%;" src="https://images.unsplash.com/photo-1555685812-4b943f1cb0eb?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80" alt="Cat"></div>
</div>
</body>
</html>