blob: 22071bd384b3f6a03b82f744de4299db140919f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>s1nical - Scrolling Title</title>
<!--<script language="JavaScript">
var space = " ";
var speed = "60";
var pos = 0;
var msg = "// s1n.ical "; /*Enter the scrolling title as the msg variable's value.*/
function Scroll() {
document.title = msg.substring(pos, msg.length) + space + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos = 0;
window.setTimeout("Scroll()", speed);
}
Scroll();
</script>-->
<script src="js/main.js"></script>
</head>
<body>
</body>
</html>
|