Skip to content

Commit

Permalink
Merge pull request #1564 from csathnere/Mobiles-&-Tablets
Browse files Browse the repository at this point in the history
Mobiles & tablets
  • Loading branch information
arghadipmanna101 committed Aug 8, 2024
2 parents 5627d0e + 38e8bc0 commit 2551706
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/Mobiles & Tablets/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flipkart</title>
</head>

<body>
<header id="header" class="text-center text-secondary fs-4"></header>
<h1 style="text-align: center;">Comming Soon</h1>
<footer id="footer" style="background-color: #203a61 !important"></footer>
<script>
document.addEventListener("DOMContentLoaded", () => {
[
{ id: "footer", url: "../../components/footer.html" },
{ id: "header", url: "../../components/header.html" },
].forEach(({ id, url }) =>
fetch(url)
.then((res) => res.text())
.then((data) => (document.getElementById(id).innerHTML = data))
.catch((err) => console.error(`Error loading ${url}:`, err))
);
});

</script>
</body>

</html>

0 comments on commit 2551706

Please sign in to comment.