blob: 0625425023c702d69e42f4f343da193f55da889a (
plain)
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
|
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=1360">
<head>
<title>Nevsky Sheets</title>
<style>
body { background-color:slategray; margin:0; }
img { box-shadow:1px 1px 8px -2px black; }
section {
display:flex;
flex-wrap:wrap;
gap:20px;
justify-content:center;
margin:20px;
}
img {
display:block;
background-color:white;
}
</style>
</head>
<body>
<section>
<img class="portrait" src="pac1_1.jpg">
<img class="portrait" src="pac1_2.jpg">
<img class="portrait" src="pac1_3.jpg">
<img class="portrait" src="pac1_4.jpg">
</section>
<section>
<img class="landscape" src="pac3_1.jpg">
<img class="landscape" src="pac3_2.jpg">
</section>
<section>
<img class="landscape" src="pac2_1.jpg">
<img class="landscape" src="pac2_2.jpg">
</section>
<section>
<img class="landscape" src="pac4_2.jpg">
<img class="landscape" src="pac4_1.jpg">
</section>
|