-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (25 loc) · 835 Bytes
/
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
35
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="CSSBootsrap-css.css">
<link rel="stylesheet" href="CSS/cat.css">
<script src="JS/cat.js"></script>
<title>Cat Generator</title>
</head>
<body class="body">
<div class="container-2">
<h1>Cat Generator</h1>
<div class="btn-set">
<div class="cat-gen-btn-2">
<button class="btn btn-success" id="cat-gen-btn" onclick="catgen()">Generate</button>
</div>
<div class="cat-gen-btn-2">
<button class="btn btn-danger" onclick="reset()">Reset</button>
</div>
</div>
<div class="flex-box-2" id="flex-cat-gen">
</div>
</div>
</body>
</html>