diff options
| author | 8cy <[email protected]> | 2020-05-08 20:41:21 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-05-08 20:41:21 -0700 |
| commit | 6922243768ed8621270f1b111a6f2630d688e787 (patch) | |
| tree | bdf3cd6f4bfc5004c724f07c419405d4a6fcbd49 /index.html | |
| parent | stage 2 (diff) | |
| download | acantha.ga-admin-master.tar.xz acantha.ga-admin-master.zip | |
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 122 |
1 files changed, 70 insertions, 52 deletions
@@ -1,60 +1,78 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> -<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> -<meta name="viewport" content="width=device-width, initial-scale=0.5"> -<title>「 Wired Sound 」</title> -<link rel="icon" type="image/png" href="favicon_64px.png" sizes="64x64" /> -<link rel="icon" type="image/png" href="favicon_32px.png" sizes="32x32" /> -<link rel="icon" type="image/png" href="favicon_16px.png" sizes="16x16" /> -<link rel="stylesheet" type="text/css" href="stylesheet.css"> -<link type="text/css" rel="stylesheet" media="screen and (max-width: 800px)" href="stylesheetU800px.css"> + <meta charset="UTF-8"> + <link href="style.css" rel="stylesheet"> + <title>Institute for Applied Noematics Web-Interface</title> + <script type="text/javascript"> +<!-- +var b_timer = null; // blink timer +var b_on = true; // blink state +var blnkrs = null; // array of spans + +function blink() { +var tmp = document.getElementsByTagName("span"); +if (tmp) { +blnkrs = new Array(); +var b_count = 0; +for (var i = 0; i < tmp.length; ++i) { +if (tmp[i].className == "blink") { +blnkrs[b_count] = tmp[i]; +++b_count; +} +} +// time in m.secs between blinks +// 500 = 1/2 second +blinkTimer(700); +} +} + +function blinkTimer(ival) { +if (b_timer) { +window.clearTimeout(b_timer); +b_timer = null; +} +blinkIt(); +b_timer = window.setTimeout('blinkTimer(' + ival + ')', ival); +} + +function blinkIt() { +for (var i = 0; i < blnkrs.length; ++i) { +if (b_on == true) { +blnkrs[i].style.visibility = "hidden"; +} +else { +blnkrs[i].style.visibility = "visible"; +} +} +b_on =!b_on; +} +//--> +</script> </head> <body> -<div id="navbar"> - <p class="blinkFrame blink"> ⌈ </p> - <p class="blinkFrame blink"> ⌉ </p> - <h1> <span class="wiredAnim"> ⌈ Wired <br> - </span> <span class="wdel1s"> Sound For </span> <br> - <span class="wdel2s"> Wired </span> <span class="wdel3s"> <br> - People ⌋<br> - </span> <br /> - <br /> - <span id="note"> <span class="del6s">║</span><span class="del5s">▒</span><span class="del4s">░</span> <span class="del2s">║</span><span class="del1s5ms">▒</span><span class="del1s">░</span> <span class="Bfast">♫</span> <span class="del1s">░</span><span class="del1s5ms">▒</span><span class="del2s">║</span> <span class="del4s">░</span><span class="del5s">▒</span><span class="del6s">║</span> </span> </h1> - <br /> - <h6>[make me sad]</h6> - <br /> - <br /> - <br /> - <p class="copy"> Copyright © 1997-2020 </p> - <p class="mail"> <a href="mailto:[email protected]">[email protected]</a> </p> - <p class="blinkFrame blink"> ⌊ </p> - <p class="blinkFrame blink"> ⌋ </p> - <img class="logo" src="mebious_icon_02.gif" /> - <p id="navline"> <a href="index.html">Home</a> ︱ <a href="AboutMe.html">About</a> ︱ <a href="login.html">Wired/Login</a> ︱ <a href="downloads.html">Download</a> <br /> - <a href="help.html">Help</a> ︱ <a href="unorgz.html">Dir/etc</a> | <a href="aaaaa.html">Wired/Verify</a></p> - <hr /> - <br /> - You are invisible.<br> - <a href="Love.html">[Go visible]</a> <br /> - <br /> -</div> -<a href="Love.html"> -<div id="enterWired"></div> -</a> -<div id="footer"> - <span> <a href="mailto:[email protected]">teacher</a><i> © 1997-2020</i> </span> </div> -<audio autoplay="" loop=""> - <source src="sound/psx_lain.wav" type="audio/wav"> -</audio> -<audio autoplay="" loop=""> - <source src="sound/boon_loop.wav" type="audio/wav"> -</audio> -<audio autoplay=""> - <source src="sound/WiredIntro2.wav" type="audio/wav"> -</audio> +<div align="center"> +<main> +<center><br><br> + <h1>[ Институт Эмпирической Ноэматики ]</h1> + <p style="font-size:13px;font-weight:bold;">Добро пожаловать, человек.</p> + <p> + <a href="about.html"><img src="eye.gif" width="512"></a> + </p> + <p> + <a href="terminal.html"> + <strong>[Войти в терминал]</strong> + </a> + </p> + <p style="position: fixed; bottom: 0; width:100%; text-align: center;"> + <a href="version.html" style="color: #2c2c2c;font-size:10px;">v. 4.08.16.256</a> + </p> + </center> +<iframe frameborder="0" height="0" src="#" width="0"></iframe> +</main> + </div> </body> </html> |