Name Change

This commit is contained in:
Michał Gdula 2022-06-08 12:14:11 +01:00
parent b72f77f464
commit 9f2fe2fc43
6 changed files with 11 additions and 5 deletions

BIN
images/gallery/image(1).png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

BIN
images/gallery/image(2).png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 804 KiB

BIN
images/gallery/image(3).png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

BIN
images/gallery/image.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

View file

@ -3,8 +3,8 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="DV8 Game Expo 2022"> <meta name="description" content="DV8 Game Event 2022">
<title>Game Expo</title> <title>Game Event</title>
<link rel="icon" type="image/x-icon" href="images/dv8.png"> <link rel="icon" type="image/x-icon" href="images/dv8.png">
<link rel="stylesheet" href="stylesheet.css"> <link rel="stylesheet" href="stylesheet.css">
<!-- Fonts --> <!-- Fonts -->
@ -20,7 +20,7 @@
<main> <main>
<header> <header>
<img src="images/wiggleBefore.png"> <img src="images/wiggleBefore.png">
<h1>Welcome to DV8s Game Expo!</h1> <h1>Welcome to DV8's Game Event!</h1>
<img src="images/wiggleAfter.png"> <img src="images/wiggleAfter.png">
</header> </header>
@ -30,14 +30,14 @@
<section id="team"> <section id="team">
<h2>The Teams</h2> <h2>The Teams</h2>
<?php <?php
include"ui/teams.html"; include"ui/teams.php";
?> ?>
</section> </section>
<section id="about"> <section id="about">
<h2>About</h2> <h2>About</h2>
<div> <div>
<p>The DV8 Game Expo is a panel run by its students, showcasing their hard work they have done during this year and a chance to show off their skills to others!</p> <p>The DV8 Game Event is a panel run by its students, showcasing their hard work they have done during this year and a chance to show off their skills to others!</p>
</div> </div>
</section> </section>

View file

@ -30,3 +30,9 @@
<p>About: Rainforest Runner is an endless runner game where you will have to dodge the dangers of the Brazilian rainforest. If you survive, you're awarded with a chest full of treasure and rewards for completing the level. Good luck! You'll need it.</p> <p>About: Rainforest Runner is an endless runner game where you will have to dodge the dangers of the Brazilian rainforest. If you survive, you're awarded with a chest full of treasure and rewards for completing the level. Good luck! You'll need it.</p>
</div> </div>
</div> </div>
<div>
<?php
$images = glob("../images/gallery/*.{jpg,jpeg,gif,png,bmp,webp}", GLOB_BRACE);
foreach ($images as $i) { echo "<img src='gallery/". basename($i) ."'>"; };
?>
</div>