-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcheems.html
25 lines (25 loc) · 919 Bytes
/
cheems.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="cheems-style.css">
<title>Cheems Generator</title>
</head>
<body>
<div class="cheems-container">
<h2>Cheems Generator</h2>
<div class="cheems-buttons">
<div>
<button class="btn btn-success" id="cheems-gen" onclick="generateCheems()">Generate Cheems</button>
</div>
<div>
<button class="btn btn-danger" onclick="location.reload()">Reset</button>
</div>
</div>
<div class="cheems-box" id="cheems-box-gen"></div>
</div>
<script src="script.js"></script>
</body>
</html>