webring/index.html

24 lines
641 B
HTML
Raw 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">
<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>