-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.php
executable file
·37 lines (26 loc) · 868 Bytes
/
head.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
32
33
34
35
36
<?php
require('php/converter.class.php');
require('php/functions.php');
require('php/regex.php');
?>
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>TI-Convertisseur</title>
<link rel="stylesheet" href="template/css/style.css">
<link rel="stylesheet" href="codemirror-5.6/lib/codemirror.css">
<link rel="stylesheet" href="codemirror-5.6/theme/base16-dark.css">
</head>
<body>
<menu>
<div class="menu">
<ul>
<li class="itemmenu"><a href="index.php">Accueil</a></li>
<li class="itemmenu"><a href="createCourseGUI.php">Générateur de cours</a></li>
<li class="itemmenu"><a href="calc_coord.php">Conversion manuelle</a></li>
<li class="itemmenu"><a href="about.php">A propos</a></li>
</ul>
</div>
</menu>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>