Fix #3: Add fallback images

This commit is contained in:
Anthony Wang 2021-10-31 12:14:23 -05:00
parent 9d465ea9ef
commit dd362cd294
Signed by: a
GPG key ID: BC96B00AEC5F2D76
5 changed files with 45 additions and 9 deletions

View file

@ -7,7 +7,11 @@
<body>
<div>
<br>
<img src="/logo.webp" alt="exozyme" height="324" width="324">
<picture>
<source srcset="/logo.webp" type="image/webp">
<source srcset="/logo.png" type="image/png">
<img src="/logo.png" alt="exozyme" height="324" width="324">
</picture>
<br>
<h2>About</h2>
@ -27,7 +31,11 @@
</p>
<br>
<p>
<img src="montage.webp" alt="Explore!" width="720" />
<picture>
<source srcset="montage.webp" type="image/webp">
<source srcset="montage.png" type="image/png">
<img src="montage.png" alt="Explore!" width="720" />
</picture>
</p>
<br>
@ -75,7 +83,11 @@
</p>
<br>
<p>
<img src="server.webp" alt="The server" width="720">
<picture>
<source srcset="server.webp" type="image/webp">
<source srcset="server.jpg" type="image/jpeg">
<img src="server.jpg" alt="The server" width="720">
</picture>
</p>
<br>
<p>

2
blog

@ -1 +1 @@
Subproject commit 307e227fe222ee927d4785cae3a211a3f64e755f
Subproject commit 5ca6c7daf67f97f5490573d6b865360c4741ce8f

View file

@ -7,7 +7,11 @@
<body>
<div>
<br>
<img src="logo.webp" alt="exozyme" height="324" width="324">
<picture>
<source srcset="/logo.webp" type="image/webp">
<source srcset="/logo.png" type="image/png">
<img src="/logo.png" alt="exozyme" height="324" width="324">
</picture>
<br>
<h2>The exozyme project</h2>

View file

@ -7,7 +7,11 @@
<body>
<div>
<br>
<img src="/logo.webp" alt="exozyme" height="324" width="324">
<picture>
<source srcset="/logo.webp" type="image/webp">
<source srcset="/logo.png" type="image/png">
<img src="/logo.png" alt="exozyme" height="324" width="324">
</picture>
<br>
<h2>Get started!</h2>
@ -24,7 +28,11 @@
</p>
<br>
<p>
<img src="rdp.webp" alt="Remote desktop" width="720">
<picture>
<source srcset="rdp.webp" type="image/webp">
<source srcset="rdp.png" type="image/png">
<img src="rdp.png" alt="Remote desktop" width="720">
</picture>
</p>
<br>
<p>
@ -38,7 +46,11 @@
</p>
<br>
<p>
<img src="exocloud.webp" alt="exocloud" width="720">
<picture>
<source srcset="exocloud.webp" type="image/webp">
<source srcset="exocloud.png" type="image/png">
<img src="exocloud.png" alt="exocloud" width="720">
</picture>
</p>
<br>
<p>
@ -52,7 +64,11 @@
</p>
<br>
<p>
<img src="element.webp" alt="Element Matrix client" width="720">
<picture>
<source srcset="element.webp" type="image/webp">
<source srcset="element.png" type="image/png">
<img src="element.png" alt="Element Matrix client" width="720">
</picture>
</p>
<br>
<p>

View file

@ -23,3 +23,7 @@ p {
width: 720px;
line-height: 24px;
}
pre {
font-family: DejaVuSansMono;
}