-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<title>Calculatrice</title>
</head>
<body class="container flex justify-center bg-blue-200">
<h1>Calculatrice</h1>
<div class="container flex justify-center ">
<div class="grid grid-cols-3 gap-5">
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">7</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">8</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">9</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">4</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">5</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">6</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">1</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">2</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">3</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">1</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">0</button>
<button class="rounded-full bg-purple-800 hover:bg-purple-900 text-slate-50 p-2">1</button>
</div>
</div>
<script src="script.js" defer></script>
</body>
</html>