1
0
Fork 0

feat: links

This commit is contained in:
Henri Saudubray 2024-07-14 08:29:23 +02:00
parent 95ea5478e8
commit ee4aae9647
Signed by: hms
GPG key ID: 7065F57ED8856128
3 changed files with 67 additions and 0 deletions

10
css/links.css Normal file
View file

@ -0,0 +1,10 @@
header, footer {
text-align: center;
}
ul {
list-style-type: '- ';
padding-left: 3ch;
margin-top: 0.5lh;
margin-bottom: 0.5lh;
}

View file

@ -21,6 +21,7 @@
Not serious stuff
<ul>
<li>[<a href="./fish.html">fish</a>]: the fish</li>
<li>[<a href="./links.html">lnk</a>]: the links</li>
</ul>
</div>
<div class="section">

56
links.html Normal file
View file

@ -0,0 +1,56 @@
<!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/links.css?version=3">
<title>LINKS</title>
<meta name="description" content="The links">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>THE LINKS</header>
<main>
<ul>
<li>
<a href="https://humanmademark.com" target="_blank">
humanmademark.com
</a>
</li>
<li>
<a href="https://learngitbranching.js.org" target="_blank">
learngitbranching.js.org
</a>
</li>
<li>
<a href="https://solar.techmagazine.com" target="_blank">
solar.techmagazine.com
</a>
</li>
<li>
<a href="https://xxiivv.com" target="_blank">
xxiivv.com
</a>
</li>
<li>
<a href="https://neography.info" target="_blank">
neography.info
</a>
</li>
<li>
<a href="https://omniglot.com" target="_blank">
omniglot.com
</a>
</li>
<li>
<a href="https://everynoise.com" target="_blank">
everynoise.com
</a>
</li>
</ul>
</main>
<footer>
<a href="./index.html">GO BACK</a>
</footer>
</body>
</html>