summaryrefslogtreecommitdiff
path: root/scrolling-title/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'scrolling-title/index.html')
-rw-r--r--scrolling-title/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/scrolling-title/index.html b/scrolling-title/index.html
new file mode 100644
index 0000000..22071bd
--- /dev/null
+++ b/scrolling-title/index.html
@@ -0,0 +1,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> \ No newline at end of file