Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 18 additions & 24 deletions aboutus.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@
<link rel="stylesheet" type="text/css" href="css/style.css">

<title>Mang Gym</title>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch('footer.html')
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.text();
})
.then(data => {
document.getElementById('footer').innerHTML = data;
})
.catch(error => {
console.error('There was a problem with the fetch operation:', error);
});
});
</script>
</head>
<body>

Expand Down Expand Up @@ -68,30 +85,7 @@ <h2>Our Story</h2>
</main>

<!-- Footer -->
<footer id="contact">
<small class="small-1">&copy; Copyright 2017 | Stephene Canciller | <span style="color: yellow">Mang Gym</span> </small>
<div id="disclaimer">
<div class="disclaimer-last">
<small class="small-2">Disclaimer: No copyright infringement is intended. This is only for educational purposes and not for profit. Some asset/s used are not owned by the developer/s unless otherwise stated; the credit goes to the owner.</small>
</div>
</div>

<!-- Social Media -->
<div id="socialMedia">
<div class="contact">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-youtube" aria-hidden="true"></i>
</div>
</div>
</footer>
<div id="footer"></div>

<!-- Import Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
Expand Down
42 changes: 18 additions & 24 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@
<link rel="stylesheet" type="text/css" href="css/style.css">

<title>Mang Gym</title>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch('footer.html')
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.text();
})
.then(data => {
document.getElementById('footer').innerHTML = data;
})
.catch(error => {
console.error('There was a problem with the fetch operation:', error);
});
});
</script>
</head>
<body>

Expand Down Expand Up @@ -97,30 +114,7 @@ <h3>Inquiry Form</h3>
</main>

<!-- Footer -->
<footer id="contact">
<small class="small-1">&copy; Copyright 2017 | Stephene Canciller | <span style="color: yellow">Mang Gym</span> </small>
<div id="disclaimer">
<div class="disclaimer-last">
<small class="small-2">Disclaimer: No copyright infringement is intended. This is only for educational purposes and not for profit. Some asset/s used are not owned by the developer/s unless otherwise stated; the credit goes to the owner.</small>
</div>
</div>

<!-- Social Media -->
<div id="socialMedia">
<div class="contact">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-youtube" aria-hidden="true"></i>
</div>
</div>
</footer>
<div id="footer"></div>

<!-- Import Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
Expand Down
27 changes: 27 additions & 0 deletions footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@


<!-- Footer -->
<footer id="contact">
<small class="small-1">&copy; Copyright 2017 | Stephene Canciller | <span style="color: yellow">Mang Gym</span> </small>
<div id="disclaimer">
<div class="disclaimer-last">
<small class="small-2">Disclaimer: No copyright infringement is intended. This is only for educational purposes and not for profit. Some asset/s used are not owned by the developer/s unless otherwise stated; the credit goes to the owner.</small>
</div>
</div>

<!-- Social Media -->
<div id="socialMedia">
<div class="contact">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-youtube" aria-hidden="true"></i>
</div>
</div>
</footer>
41 changes: 18 additions & 23 deletions home.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@
<link rel="stylesheet" type="text/css" href="css/style.css">

<title>Mang Gym</title>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch('footer.html')
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.text();
})
.then(data => {
document.getElementById('footer').innerHTML = data;
})
.catch(error => {
console.error('There was a problem with the fetch operation:', error);
});
});
</script>
</head>
<body>

Expand Down Expand Up @@ -116,29 +133,7 @@ <h2>Sign up for our EXCLUSIVE TRAINING Tips, Offers and Discounts</h2>
</main>

<!-- Footer -->
<footer id="contact">
<small class="small-1">&copy; Copyright 2017 | Stephene Canciller | <span style="color: yellow">Mang Gym</span> </small>
<div id="disclaimer">
<div class="disclaimer-last">
<small class="small-2">Disclaimer: No copyright infringement is intended. This is only for educational purposes and not for profit. Some asset/s used are not owned by the developer/s unless otherwise stated; the credit goes to the owner.</small>
</div>
</div>

<div id="socialMedia">
<div class="contact">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-youtube" aria-hidden="true"></i>
</div>
</div>
</footer>
<div id="footer"></div>

<!-- Import Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
Expand Down
42 changes: 18 additions & 24 deletions programs.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@
<link rel="stylesheet" type="text/css" href="css/style.css">

<title>Mang Gym</title>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch('footer.html')
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.text();
})
.then(data => {
document.getElementById('footer').innerHTML = data;
})
.catch(error => {
console.error('There was a problem with the fetch operation:', error);
});
});
</script>
</head>
<body>

Expand Down Expand Up @@ -106,30 +123,7 @@ <h2>MEMBERSHIP PLANS</h2>
</main>

<!-- Footer -->
<footer id="contact">
<small class="small-1">&copy; Copyright 2017 | Stephene Canciller | <span style="color: yellow">Mang Gym</span> </small>
<div id="disclaimer">
<div class="disclaimer-last">
<small class="small-2">Disclaimer: No copyright infringement is intended. This is only for educational purposes and not for profit. Some asset/s used are not owned by the developer/s unless otherwise stated; the credit goes to the owner.</small>
</div>
</div>

<!-- Social Media Icons -->
<div id="socialMedia">
<div class="contact">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
<div class="contact">
<i class="fa fa-youtube" aria-hidden="true"></i>
</div>
</div>
</footer>
<div id="footer"></div>

<!-- Import Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
Expand Down