-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (25 loc) · 937 Bytes
/
index.php
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
<?php require_once "function.php" ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-wodth, initial-scale=1.0, user-scalable=no">
<title>Tic Tac Toe</title>
<link rel="stylesheet" type="text/css" href="assets/css/ermile.css">
<!-- <link rel="stylesheet" type="text/css" href="assets/fonts/fontawesome-pro/css/all.min.css"> -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- <link rel="shortcut icon" href="../../../static/images/1.jpg"> -->
</head>
<body>
<div class="container">
<?php echo game(); ?>
</div>
<footer >
Coded by <a target="" href="https://github.com/MohammadAmin-Mashayekhan">Mohammad amin Mashayekhan</a>
<br>
Guided by: <span>Mr. Javad Adib</span>
<br>
</footer>
</body>
</html>