Updated to php
This commit is contained in:
parent
2a6c827c61
commit
e5d8bbf0a5
5 changed files with 63 additions and 55 deletions
7
footer.php
Normal file
7
footer.php
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<footer>
|
||||
<p>
|
||||
© 2021 Tronax | <a href="impressum.html">Impressum</a>
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
19
header.php
Normal file
19
header.php
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!-- HEADER ---------------------------------------->
|
||||
|
||||
<header>
|
||||
<div id="logo">
|
||||
<a href="index.html">
|
||||
<img src="./img/logo.png" alt="Logo">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<nav id="main-nav">
|
||||
<ul>
|
||||
<li id="twitch"> <a href="https://www.twitch.tv/tronaxyt"><img src="./img/twitchlogo.png" alt="Twitch"></a> </li>
|
||||
<li id="twitter"> <a href="https://twitter.com/Tronax"><img src="./img/twitterlogo.png" alt="Twitter"></a> </li>
|
||||
<li id="instagram"> <a href="https://www.instagram.com/tronax_/"><img src="./img/instagramlogo.png" alt="Instagram"></a> </li>
|
||||
<li id="discord"> <a href="https://discord.gg/tb3vG9a"><img src="./img/discordlogo.png" alt="Discord"></a> </li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</header>
|
||||
55
index.html
55
index.html
|
|
@ -1,55 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<!DOCTYPE html>
|
||||
<!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 ---------------------------------------->
|
||||
|
||||
<header>
|
||||
<div id="logo">
|
||||
<a href="index.html">
|
||||
<img src="./img/logo.png" alt="Logo">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<nav id="main-nav">
|
||||
<ul>
|
||||
<li id="twitch"> <a href="https://www.twitch.tv/tronaxyt"><img src="./img/twitchlogo.png" alt="Twitch"></a> </li>
|
||||
<li id="twitter"> <a href="https://twitter.com/Tronax"><img src="./img/twitterlogo.png" alt="Twitter"></a> </li>
|
||||
<li id="instagram"> <a href="https://www.instagram.com/tronax_/"><img src="./img/instagramlogo.png" alt="Instagram"></a> </li>
|
||||
<li id="discord"> <a href="https://discord.gg/tb3vG9a"><img src="./img/discordlogo.png" alt="Discord"></a> </li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</header>
|
||||
|
||||
<!-- HOME ---------------------------------------->
|
||||
|
||||
<section id="home">
|
||||
<div id="biglogo">
|
||||
<img src="./img/logo.png" alt="Logo" align="middle">
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
<!-- FOOTER ---------------------------------------->
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2021 Tronax | <a href="impressum.html">Impressum</a>
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
37
index.php
Normal file
37
index.php
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<!DOCTYPE html>
|
||||
<!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 src="./img/logo.png" alt="Logo" align="middle">
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
<!-- FOOTER ---------------------------------------->
|
||||
|
||||
<?php
|
||||
require 'footer.php';
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue