-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 1.1 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
<!DOCTYPE html>
<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">
<title>Cat-generator</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>challenge 2: Cat-generator</h2>
<div>
<button class="btn btn-success" onclick="generate()">Generate Cat</button>
<button id="dan" class="btn btn-danger" onclick="del()">Delete Cat</button>
</div>
<div class="flex-box" id="img-container">
<!-- <img src="cat.gif" alt="">
<img src="cat.gif" alt="">
<img src="cat.gif" alt="">
<img src="cat.gif" alt="">
<img src="cat.gif" alt=""> -->
</div>
</div>
<script src="new.js"></script>
</body>
</html>