Skip to content

Commit

Permalink
nav added
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharmacs8853 committed May 7, 2022
1 parent 75b4eb3 commit fb2b9e1
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 6 deletions.
6 changes: 6 additions & 0 deletions create_ac.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link rel="stylesheet" href="./styles/common_style.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/login.css">
<link rel="stylesheet" href="./styles/foot.css">
<title>Create an Account</title>
</head>
<body>
Expand Down Expand Up @@ -72,8 +73,13 @@ <h1 id="login_heading">Create An Account</h1><br>
</div>
<div></div>
</div>
<footer id="footer"></footer>

</body>
</html>
<script type="module">
import footerdata from "./components/footer.js";
document.getElementById("footer").innerHTML = footerdata();
</script>
<script src="./scripts/create_ac.js" type="module"></script>
<script src="./scripts/language_menu.js" type="module"></script>
9 changes: 7 additions & 2 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<link href="https://fonts.googleapis.com/css2?family=Fredoka&family=Poppins:wght@200;400;500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styles/common_style.css">
<link rel="stylesheet" href="./styles/foot.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/login.css">
<title>Login</title>
Expand All @@ -34,7 +35,7 @@
<div id="login_div">
<div></div>
<div id="login_content">
<h1 id="login_heading">Sing In</h1><br>
<h1 id="login_heading">Sign In</h1><br>
<div id="login_fb" class="log padding">
<div> <span>Sign in with Facebook</span></div>
<div><i class="fa-brands fa-facebook-f"></i></div>
Expand Down Expand Up @@ -70,8 +71,12 @@ <h1 id="login_heading">Sing In</h1><br>
</div>
<div></div>
</div>

<footer id="footer"></footer>
</body>
</html>
<script type="module">
import footerdata from "./components/footer.js";
document.getElementById("footer").innerHTML = footerdata();
</script>
<script src="./scripts/login.js" type="module"></script>
<script src="./scripts/language_menu.js" type="module"></script>
7 changes: 6 additions & 1 deletion my-question.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link rel="stylesheet" href="./styles/common_style.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/my-question.css">
<link rel="stylesheet" href="./styles/foot.css">
<title>My Account</title>
</head>
<body>
Expand Down Expand Up @@ -65,9 +66,13 @@ <h4>Sensitive </h4>
<a href="my-question2.html"><i class="fa-solid fa-circle-arrow-right"></i></a>
</div>
</div>

<footer id="footer"></footer>

</body>
</html>
<script type="module">
import footerdata from "./components/footer.js";
document.getElementById("footer").innerHTML = footerdata();
</script>
<script src="./scripts/my-question.js" type="module"></script>
<script src="./scripts/language_menu.js" type="module"></script>
6 changes: 6 additions & 0 deletions my-question2.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link rel="stylesheet" href="./styles/common_style.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/my-question.css">
<link rel="stylesheet" href="./styles/foot.css">
<title>My Account</title>
</head>
<body>
Expand Down Expand Up @@ -67,7 +68,12 @@ <h4>Deep</h4>
<a href="my-question3.html"><i class="fa-solid fa-circle-arrow-right"></i></a>
</div>
</div>
<footer id="footer"></footer>
</body>
</html>
<script type="module">
import footerdata from "./components/footer.js";
document.getElementById("footer").innerHTML = footerdata();
</script>
<script src="./scripts/my-question.js" type="module"></script>
<script src="./scripts/language_menu.js" type="module"></script>
7 changes: 6 additions & 1 deletion my-question3.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link rel="stylesheet" href="./styles/common_style.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/my-question.css">
<link rel="stylesheet" href="./styles/foot.css">
<title>My Account</title>
</head>
<body>
Expand Down Expand Up @@ -65,9 +66,13 @@ <h4>Fresh </h4>
<a href="my-question4.html"><i class="fa-solid fa-circle-arrow-right"></i></a>
</div>
</div>

<footer id="footer"></footer>

</body>
</html>
<script type="module">
import footerdata from "./components/footer.js";
document.getElementById("footer").innerHTML = footerdata();
</script>
<script src="./scripts/my-question.js" type="module"></script>
<script src="./scripts/language_menu.js" type="module"></script>
7 changes: 6 additions & 1 deletion my-question4.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link rel="stylesheet" href="./styles/common_style.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/my-question.css">
<link rel="stylesheet" href="./styles/foot.css">
<title>My Account</title>
</head>
<body>
Expand Down Expand Up @@ -206,9 +207,13 @@ <h4>Neutrals</h4>
<br><br><br>
</div>
</div>

<footer id="footer"></footer>

</body>
</html>
<script type="module">
import footerdata from "./components/footer.js";
document.getElementById("footer").innerHTML = footerdata();
</script>
<script src="./scripts/my-question.js" type="module"></script>
<script src="./scripts/language_menu.js" type="module"></script>
7 changes: 6 additions & 1 deletion myaccount.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link rel="stylesheet" href="./styles/common_style.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/myaccount.css">
<link rel="stylesheet" href="./styles/foot.css">
<title>My Account</title>
</head>
<body>
Expand Down Expand Up @@ -61,8 +62,12 @@ <h3 class="color">Account Details</h3>
<button id="address_btn">view Addresses</button><br><br>

</div>

<footer id="footer"></footer>
</body>
</html>
<script type="module">
import footerdata from "./components/footer.js";
document.getElementById("footer").innerHTML = footerdata();
</script>
<script src="./scripts/myaccount.js" type="module"></script>
<script src="./scripts/language_menu.js" type="module"></script>

0 comments on commit fb2b9e1

Please sign in to comment.