-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1.11 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Optimization</title>
<link rel="stylesheet" href="./style.css"/>
</head>
<body>
<main>
<section>
<div class="container">
<h1>Image Optimization</h1>
<ul>
<li><a href="https://sau0409.github.io/No_Image_Optimization_Demo/" target="_blank">No optimization</a></li>
<li><a href="https://sau0409.github.io/CSS-Image-Optimization/" target="_blank">Css media queries optimization</a></li>
<li><a href="https://sau0409.github.io/HTML-Image-Optimization/" target="_blank">HTML with srcset optimization</a></li>
<li><a href="https://sau0409.github.io/HTML-2-Image-Optimization/" target="_blank">HTML with srcset and sizes optimization</a></li>
<li><a href="https://sau0409.github.io/HTML-3-Image-Optimization/" target="_blank">HTML with picture optimization</a></li>
</ul>
</div>
</section>
</main>
</body>
</html>