-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwiki.php
More file actions
28 lines (28 loc) · 1.2 KB
/
wiki.php
File metadata and controls
28 lines (28 loc) · 1.2 KB
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
<!DOCTYPE html>
<?php
require_once('./assets/miniatures/db_connect.php');
?>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Auto-Draw Wiki</title>
<link href="output.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="author" content="Auto-Draw">
<meta name="application-name" content="Auto-Draw">
<meta name="description" content="Easily trace any picture with your cursor and impress your friends in drawing games.">
<meta property="og:title" content="AutoDraw - Wiki">
<meta property="og:description" content="Learn how to use the AutoDraw program, and how to get the best drawings.">
</head>
<body>
<?php include 'assets/header.php'; ?>
<div class="h-full w-full bg-gray-900">
<h1 class="p-5 pt-10 pb-3 text-center text-6xl font-semibold text-white">Wiki</h1>
<div class="h-[80vh]">
<h1 class="p-5 pt-10 pb-3 text-center text-4xl font-semibold text-white">Coming soon!</h1>
</div>
</div>
<?php include 'assets/footer.php'; ?>
</body>
</html>