mirror of
https://github.com/ilyakooo0/webring.git
synced 2024-11-22 05:12:53 +03:00
20 lines
528 B
HTML
20 lines
528 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" type="text/css" href="links/fonts.css"/>
|
|
<link rel="stylesheet" type="text/css" href="links/main.css"/>
|
|
<script src="scripts/portal.js"></script>
|
|
<script src="scripts/sites.js"></script>
|
|
<title>Webring</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
const portal = new Portal(sites);
|
|
portal.install(document.body);
|
|
portal.start();
|
|
</script>
|
|
</body>
|
|
</html>
|