-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtier-4.php
More file actions
38 lines (31 loc) · 1.08 KB
/
tier-4.php
File metadata and controls
38 lines (31 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<!-- LOAD ALL DEPENDENCY LINKS FROM FILE -->
<?php require_once("lib/head-utils.php");?>
<title>Literary Mutilator | Tier IV</title>
</head>
<body>
<!-- LOAD NAVBAR FROM FILE -->
<?php require_once("lib/navbar.php"); ?>
<main class="mb-5">
<div class="container">
<h1 class="pacifico--font">Tier IV</h1>
<hr class="mt-5 bg-secondary">
<h2>jQuery Flavored Bacon</h2>
<button id="getJqueryBacon" class="btn btn-lg btn-danger">Gimme Bacon</button>
<div class="m-t-1" id="jqueryBacon"></div>
<hr class="my-3">
<h2>XMLHttpRequest Flavored Bacon</h2>
<button id="getJsBacon" class="btn btn-lg btn-danger" onclick="jsBaconRequest();">Gimme Moar Bacon</button>
<div class="m-t-1" id="jsBacon"></div>
<hr class="my-3">
<h2>Fetch Flavored Bacon</h2>
<button id="getFetchBacon" class="btn btn-lg btn-danger" onclick="fetchBacon();">Fetch Bacon Pls</button>
<div class="m-t-1" id="fetchBacon"></div>
</div>
</main>
<!-- JavaScript - Iier IV -->
<script src="js/tier-4.js"></script>
</body>
</html>