mirror of
https://github.com/ilyakooo0/webring.git
synced 2024-11-22 13:35:24 +03:00
24 lines
641 B
HTML
24 lines
641 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="scripts/portal.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="links/reset.css"/>
|
|
<link rel="stylesheet" type="text/css" href="links/fonts.css"/>
|
|
<link rel="stylesheet" type="text/css" href="links/main.css"/>
|
|
<title>Webring</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
// protocole://url.domain.ext/
|
|
var sites = [
|
|
"https://wiki.xxiivv.com/",
|
|
"http://estevancarlos.com/"
|
|
]
|
|
var portal = New Portal(sites);
|
|
portal.start();
|
|
</script>
|
|
</body>
|
|
</html>
|