Elatteria-Website/E-Cafe Website/flagle.html

54 lines
1.4 KiB
HTML
Raw Normal View History

2022-12-10 22:30:38 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2022-12-20 18:21:34 +02:00
<title>Flagle | E-Cafe</title>
2022-12-10 22:30:38 +02:00
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="gamedlestyles.css">
2022-12-20 18:21:34 +02:00
<script src="Scripts/flagle.js">
</script>
2022-12-10 22:30:38 +02:00
</head>
<body>
<header>
<nav>
2022-12-13 18:39:21 +02:00
<ul class="desktop">
2022-12-20 18:21:34 +02:00
<li><a href="games.html">More Games</a></li>
<li><a href="index.html">E-Cafe</a></li>
2022-12-13 18:39:21 +02:00
</ul>
<ul class="mobile">
2022-12-20 18:21:34 +02:00
<li><a href="games.html">More Games</a></li>
<li><a href="index.html">E-Cafe</a></li>
2022-12-10 22:30:38 +02:00
</ul>
</nav>
</header>
<h1 class="title">
2022-12-13 18:39:21 +02:00
Flagle
2022-12-20 18:21:34 +02:00
<div id="underline">
</div>
2022-12-10 22:30:38 +02:00
</h1>
2022-12-20 18:21:34 +02:00
<section class="description">
<figure id="flag">
<img src="https://flagcdn.com/us.svg" alt="Flag of a random country">
</figure>
<!--Guess 1-->
<div class="gamedle-section">
</div>
<!--Guess 2-->
<div class="gamedle-section">
</div>
<!--Guess 3-->
<div class="gamedle-section">
</div>
<!--Guess 4-->
<div class="gamedle-section">
</div>
<!--Guess 5-->
<div class="gamedle-section">
</div>
</section>
2022-12-10 22:30:38 +02:00
2022-12-20 18:21:34 +02:00
<button type="button" onclick="getFlag()">Guess</button>
<input id="guessInput" type="text">
2022-12-10 22:30:38 +02:00
</body>
</html>