webring/index.html

20 lines
528 B
HTML
Raw Permalink Normal View History

2018-05-17 00:05:47 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2018-07-04 04:23:41 +03:00
<link rel="stylesheet" type="text/css" href="links/fonts.css"/>
2018-06-03 01:11:00 +03:00
<link rel="stylesheet" type="text/css" href="links/main.css"/>
<script src="scripts/portal.js"></script>
<script src="scripts/sites.js"></script>
2018-05-17 00:05:47 +03:00
<title>Webring</title>
</head>
<body>
<script>
2018-09-30 10:46:04 +03:00
const portal = new Portal(sites);
2018-10-03 06:48:55 +03:00
portal.install(document.body);
2018-05-17 00:05:47 +03:00
portal.start();
</script>
</body>
2018-08-14 03:16:46 +03:00
</html>