-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (57 loc) · 2.03 KB
/
index.html
File metadata and controls
68 lines (57 loc) · 2.03 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Activity 1 API</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top">
<h4>Activity 1</h4>
</div>
<div class="nav">
<h2>API Integration</h2>
</div>
<div class="container">
<div class="left">
<div class="box">
<div class=pic>
<img src="images/funnycat.PNG"><hr>
</div>
<div class=info>
<h3>THIS IS A CAT...</h3><hr>
<h4>I know he looks cute but weird... so, you can instead generate a random cat image</h4>
<button id="cat_button">Generate</button>
</div>
</div>
<div class="box">
<div class=pic>
<img src="images/susdoggo.PNG"><hr>
</div>
<div class=info>
<h3>THIS IS A DOG...</h3><hr>
<h4>Considering just how he is suspicious of you... You might want to generate a new one...</h4>
<button id="dog_button">Generate</button>
</div>
</div>
<div class="box">
<div class=pic>
<img src="images/wisemen.jpg"><hr>
</div>
<div class=info>
<h3>THE WISE CHINESE MAN</h3><hr>
<h4>His famous quote "请让制作这个网站的程序员通过他的科目", You dont get it? generate a new one...</h4>
<button id="quote_button">Generate</button>
</div>
</div>
</div>
<div class="right">
<div class="display">
<div id="imgFromAPI" class="image_from_API"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>