feat: tiles
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<link rel="stylesheet" type="text/css" href="./css/base.css?version=3">
|
||||
<link rel="stylesheet" type="text/css" href="./css/fish.css?version=3">
|
||||
<link rel="stylesheet" type="text/css" href="./css/imgs.css?version=3">
|
||||
<title>FISH</title>
|
||||
<meta name="description" content="The fish">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
|
|
|||
BIN
img/tiles/1.avif
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
img/tiles/2.avif
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
img/tiles/3.avif
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
img/tiles/4.avif
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
img/tiles/5.avif
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
img/tiles/6.avif
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
img/tiles/7.avif
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
img/tiles/8.avif
Normal file
|
After Width: | Height: | Size: 76 KiB |
|
|
@ -21,6 +21,7 @@
|
|||
Not serious stuff
|
||||
<ul>
|
||||
<li>[<a href="./fish.html">fsh</a>]: the fish</li>
|
||||
<li>[<a href="./tiles.html">tls</a>]: the tiles</li>
|
||||
<li>[<a href="./links.html">lnk</a>]: the links</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
59
tiles.html
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<link rel="stylesheet" type="text/css" href="./css/base.css?version=3">
|
||||
<link rel="stylesheet" type="text/css" href="./css/imgs.css?version=3">
|
||||
<title>TILES</title>
|
||||
<meta name="description" content="The tiles">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<header>THE TILES</header>
|
||||
<main>
|
||||
<div>
|
||||
<a href="./img/tiles/1.avif" download>
|
||||
<img src="./img/tiles/1.avif" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="./img/tiles/2.avif" download>
|
||||
<img src="./img/tiles/2.avif" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="./img/tiles/3.avif" download>
|
||||
<img src="./img/tiles/3.avif" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="./img/tiles/4.avif" download>
|
||||
<img src="./img/tiles/4.avif" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="./img/tiles/5.avif" download>
|
||||
<img src="./img/tiles/5.avif" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="./img/tiles/6.avif" download>
|
||||
<img src="./img/tiles/6.avif" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="./img/tiles/7.avif" download>
|
||||
<img src="./img/tiles/7.avif" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="./img/tiles/8.avif" download>
|
||||
<img src="./img/tiles/8.avif" />
|
||||
</a>
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
<a href="./index.html">GO BACK</a>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||