-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 2.78 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horror XO</title>
<link rel="icon" href="./Horror logo.png" type = "image/png">
<link rel="stylesheet" href="styles.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header id="hdr">
<h1> - - Horror XO - - </h1>
<marquee behavior="alternate" direction="left">X - O - X - O - X - O - X</marquee>
<marquee behavior="alternate" direction="right">X - O - X - O - X - O - X</marquee>
</header>
<Section id="main">
<div id="tableSec" hidden>
<table id="box">
<tr>
<td onclick="xORo(event)" id="00"></td>
<td onclick="xORo(event)" id="01"></td>
<td onclick="xORo(event)" id="02"></td>
</tr>
<tr>
<td onclick="xORo(event)" id="10"></td>
<td onclick="xORo(event)" id="11"></td>
<td onclick="xORo(event)" id="12"></td>
</tr>
<tr>
<td onclick="xORo(event)" id="20"></td>
<td onclick="xORo(event)" id="21"></td>
<td onclick="xORo(event)" id="22"></td>
</tr>
</table>
</div>
<p id="notator" onclick="start()">
Start
</p>
<div id="refresh" onclick="reload()" style="display: none">
<i class='bx bx-refresh'></i>
</div>
</Section>
<footer id="ftr">
<p> - - Developed by Horror - - </p>
<div class="social_media">
<a href="https://www.facebook.com/ma.harishj.7/" target="_blank" ><i class='bx bxl-facebook'></i></a>
<a href="https://twitter.com/m_a_harish_j" target="_blank" ><i class='bx bxl-twitter' ></i></a>
<a href="https://www.instagram.com/m_a_harish_j/" target="_blank" ><i class='bx bxl-instagram-alt' ></i></a>
<a href="https://www.linkedin.com/in/m-a-harish-j-a69474209/" target="_blank" ><i class='bx bxl-linkedin' ></i></a>
<a href="https://github.com/mr-horror-harry" target="_blank" ><i class='bx bxl-github'></i></a>
<a href="https://www.skillrack.com/faces/resume.xhtml?id=304818&key=ed4275e961c87503463e9cd03027f74bfb2e4873" target="_blank" ><i class='bx bx-code'></i></a>
<a href="https://www.behance.net/mrhrrr"><i class='bx bxl-behance'></i></a>
<a href="https://dribbble.com/M_A_HARISH_J_1303"><i class='bx bxl-dribbble' ></i></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>