mirror of
https://github.com/Crocmagnon/buzzer.git
synced 2024-11-22 07:58:02 +01:00
27 lines
No EOL
839 B
HTML
27 lines
No EOL
839 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<title>Buzzer</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
|
<link rel="stylesheet" href="w3.css" type="text/css">
|
|
<script type="text/javascript" src="script.js"></script>
|
|
</head>
|
|
|
|
<body class="w3-animate-opacity">
|
|
<div class="w3-card w3-blue w3-padding-small w3-center">
|
|
<h1>Buzzer</h1>
|
|
</div>
|
|
|
|
<div class="w3-margin w3-center w3-card w3-padding-24">
|
|
<h3 class="w3-padding">Contrôles</h3>
|
|
<button onclick="play()" class="w3-button w3-blue w3-xlarge w3-ripple">Jouer le son</button>
|
|
</div>
|
|
|
|
<div class="w3-margin w3-center w3-card w3-padding-24">
|
|
<h3 class="w3-padding">Fichier sélectionné</h3>
|
|
<p class="w3-xxlarge" id="selected-file">Aucun</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |