f0ck-fe-old/test1/index.html
2021-12-31 07:18:41 +01:00

31 lines
719 B
HTML

<!doctype blah>
<html>
<head>
<title>Test 1</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1" />
<link href="./style.css" rel="stylesheet" />
</head>
<body>
<div class="navbar">
<a href="./">reload</a> |
<a href="#" data-id="1">debug 1</a> |
<a href="#" data-id="2">page 2</a> |
<a href="#" data-id="3">page 3</a>
</div>
<div class="pscroll" id="up"></div>
<div id="page">
<div id="thumbs" style="top: 0;"></div>
</div>
<div class="pscroll" id="down"></div>
<script src="./f0ck.js"></script>
<script>
window.onload = () => {
let f = new f0ck(window.location.hash);
};
</script>
</body>
</html>