-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_page.html
36 lines (34 loc) · 1.45 KB
/
main_page.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
36
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="styles\bootstrap-4.4.1-dist\css\bootstrap.min.css">
</head>
<body style="background-color : #b3b3b3; overflow-x : hidden;">
<!-- Creating Nav Bar -->
<nav class="navbar navbar-dark col-lg-12" style="color : white; background-color : #292929">
<a class="navbar-brand" href="#">
<img src="images\brand-emblem-2.png" width="32" height="32" alt="" style="border-radius: 50%;">
BONGO CAT GENERATOR
</a>
</nav> <!-- End of Nav Bar-->
<div class="row">
<div class="col-lg-12">
<br>
<button class="btn btn-dark" style="height : 100%; width : 100%" onclick="makeBongoCat()">
Generate Bongo Cat?
</button>
<br>
</div>
<div class="col-lg-12" id="bongoCatHome"></div>
</div> <!--End of Row Div-->
</body>
<script src="styles\JQuery\jquery-3.4.1.js"></script>
<script src="styles\bootstrap-4.4.1-dist\js\bootstrap.bundle.min.js"></script>
<script>
function makeBongoCat()
{
$("#bongoCatHome").hide();
document.getElementById("bongoCatHome").innerHTML = "<br><img src=\"images\\bongo_cat_template.jpg\" width=\"2000\" height=\"1000\" alt=\"\">";
$("#bongoCatHome").fadeIn(1000);
}
</script>
</html>