-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path002-small-teaser-sizes.html
50 lines (39 loc) · 1.31 KB
/
002-small-teaser-sizes.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
<!DOCTYPE html>
<html>
<head>
<script src="./utils.js"></script>
<link rel="stylesheet" href="style.css">
<title>Small Teaser Sizes</title>
</head>
<body>
<div class="main">
<p id="dimensions-screen"></p>
<div class="flex-container">
<div class="card">
<img srcset="
https://dummyimage.com/600x600/D5E8D4/000 600w,
https://dummyimage.com/800x800/D5E8D4/000 800w,
https://dummyimage.com/900x900/D5E8D4/000 900w,
https://dummyimage.com/1000x1000/D5E8D4/000 1000w,
https://dummyimage.com/1200x1200/D5E8D4/000 1200w,
https://dummyimage.com/1500x1500/D5E8D4/000 1500w"
sizes="40vw"
src="https://dummyimage.com/900x900/D5E8D4/000" id="card1">
<p id="dimensions-card1"></p>
</div>
<div class="card">
<img srcset="
https://dummyimage.com/600x600/D5E8D4/000 600w,
https://dummyimage.com/800x800/D5E8D4/000 800w,
https://dummyimage.com/900x900/D5E8D4/000 900w,
https://dummyimage.com/1000x1000/D5E8D4/000 1000w,
https://dummyimage.com/1200x1200/D5E8D4/000 1200w,
https://dummyimage.com/1500x1500/D5E8D4/000 1500w"
sizes="40vw"
src="https://dummyimage.com/300x300/000/fff" id="card2">
<p id="dimensions-card2"></p>
</div>
</div>
</div>
</body>
</html>