forked from monnerat/web_2025
26 lines
608 B
PHP
26 lines
608 B
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" >
|
||
|
|
<link
|
||
|
|
rel="stylesheet"
|
||
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<link rel="stylesheet" href="./css/style.css">
|
||
|
|
<title>Chifoumi</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<main class="container">
|
||
|
|
|
||
|
|
<h3>Rock Paper Scissors</h3>
|
||
|
|
|
||
|
|
<section class="center">
|
||
|
|
<p>Choose : </p>
|
||
|
|
<a href="?choice=0"><img width="100px" src="./images/rock.png"></a>
|
||
|
|
<a href="?choice=1"><img width="100px" src="./images/paper.png"></a>
|
||
|
|
<a href="?choice=2"><img width="100px" src="./images/scissors.png"></a>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
|