mirror of
https://github.com/ilyakooo0/webring.git
synced 2024-11-22 13:35:24 +03:00
30 lines
791 B
HTML
30 lines
791 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="portal.js"></script>
|
|
<title>Webring</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
// protocole://url.domain.ext/
|
|
var sites = [
|
|
"https://wiki.xxiivv.com/",
|
|
"http://estevancarlos.com/",
|
|
"https://electro.pizza/",
|
|
"http://xla.wiki/",
|
|
"https://monochromatic.co/",
|
|
"https://joshavanier.github.io/"
|
|
]
|
|
var portal = new Portal(sites);
|
|
portal.start();
|
|
</script>
|
|
<style>
|
|
body { background:#eee; padding:30px; }
|
|
body a { color:#000; display: inline-block; padding:0px 5px; line-height: 20px}
|
|
body a:hover { color:#eee; background:#000; text-decoration: none; }
|
|
</style>
|
|
</body>
|
|
</html>
|