mirror of
https://github.com/LucasVbr/EnglishRolePlayGame.git
synced 2026-05-13 17:11:50 +00:00
62 lines
2.1 KiB
HTML
62 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Let's Hack the NASA</title>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS v5.0.2 -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<!-- Header -->
|
|
<div style="visibility:hidden" class="row text-center">
|
|
<h3 id=turn class="turn-hacker">Hacker's turn</h3>
|
|
</div>
|
|
|
|
<!-- Question -->
|
|
<div class="row text-center">
|
|
<h1 class="title">Input players pseudo</h1>
|
|
</div>
|
|
|
|
<!-- Input pseudo -->
|
|
<div class="row text-center">
|
|
<div class="col-md-6">
|
|
<input type="text" placeholder="Player 1"/>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<input type="text" placeholder="Player 2"/>
|
|
</div>
|
|
<div class="col-md-12">
|
|
<input type="button" value="Let's start the game"/>
|
|
</div>
|
|
</div>
|
|
<!-- Answers -->
|
|
<div style="visibility:hidden" class="row text-center bot">
|
|
<div class=" col-md-6">
|
|
<div class="choose-btn green">
|
|
Hack the NSA
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="choose-btn purple">
|
|
Hack the bakery
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="data.js"></script>
|
|
<script src="script.js"></script>
|
|
|
|
<!-- Bootstrap JavaScript Libraries -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|