diff options
| -rw-r--r-- | src/index.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/index.html b/src/index.html deleted file mode 100644 index 22071bd..0000000 --- a/src/index.html +++ /dev/null @@ -1,30 +0,0 @@ -<!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 |