feat: links
This commit is contained in:
parent
95ea5478e8
commit
ee4aae9647
3 changed files with 67 additions and 0 deletions
10
css/links.css
Normal file
10
css/links.css
Normal 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;
|
||||||
|
}
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
Not serious stuff
|
Not serious stuff
|
||||||
<ul>
|
<ul>
|
||||||
<li>[<a href="./fish.html">fish</a>]: the fish</li>
|
<li>[<a href="./fish.html">fish</a>]: the fish</li>
|
||||||
|
<li>[<a href="./links.html">lnk</a>]: the links</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="section">
|
<div class="section">
|
||||||
|
|
|
||||||
56
links.html
Normal file
56
links.html
Normal 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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue