-
Notifications
You must be signed in to change notification settings - Fork 287
/
index.html
29 lines (29 loc) · 897 Bytes
/
index.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>10. Skillbox, оптимизация графики, Squoosh и элемент picture</title>
<style>
img {
max-width: 100%;
}
</style>
</head>
<body>
<picture>
<source srcset="images/[email protected] 1x,
images/[email protected] 2x"
media="(min-width: 600px)"
type="image/webp">
<source srcset="images/[email protected] 1x,
images/[email protected] 2x"
media="(min-width: 600px)">
<source srcset="images/[email protected] 1x,
images/[email protected] 2x"
type="image/webp">
<img src="images/[email protected]"
srcset="images/[email protected] 2x"
alt="Девушка пьёт кофе">
</picture>
</body>
</html>