36 lines
929 B
PHP
36 lines
929 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Tronax</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="shortcut icon" href="./img/logo.ico">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:500&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- HEADER ---------------------------------------->
|
|
|
|
<?php
|
|
require 'header.php';
|
|
?>
|
|
|
|
<!-- HOME ---------------------------------------->
|
|
|
|
<section id="home">
|
|
<div id="biglogo">
|
|
<img draggable="false" src="./img/logo.png" alt="Logo" align="middle">
|
|
</div>
|
|
|
|
|
|
</section>
|
|
<!-- FOOTER ---------------------------------------->
|
|
|
|
<?php
|
|
require 'footer.php';
|
|
?>
|
|
</body>
|
|
</html>
|