Skip to content

Commit

Permalink
Merge pull request #15 from AkashKobal/master
Browse files Browse the repository at this point in the history
update deployment
AkashKobal authored Mar 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents d5a6103 + 7f13239 commit 788b33c
Showing 4 changed files with 362 additions and 221 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"workbench.settings.editor": "ui"
}
79 changes: 76 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -3,10 +3,83 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<title>Web Development Projects</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script></head>
<body>
<iframe src="left-frame.html" frameborder="0" height="1000px"></iframe>
<div class="nav-bar">

<!-- Navbar content -->
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" fill="currentColor"
class="bi bi-code-square" viewBox="0 0 16 16">
<path
d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z" />
<path
d="M6.854 4.646a.5.5 0 0 1 0 .708L4.207 8l2.647 2.646a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .708 0m2.292 0a.5.5 0 0 0 0 .708L11.793 8l-2.647 2.646a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708 0" />
</svg><a class="navbar-brand" href="#"> Web Development Projects</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
</ul>

</div>
</div>
</nav>
</div>
<div class="frames">
<iframe id="left-frame" class="left-frame" src="left-frame.html" frameborder="0" height="1000px"></iframe>
<iframe id="main-frame" class="main-frame" src="main-frame.html" frameborder="0" height="1000px" width="100%"></iframe>
</div>
</body>

<script>
let btn1 = document.getElementById("btn1");
let btn2 = document.getElementById("btn2");
let btn3 = document.getElementById("btn3");
let mainFrame = document.getElementById("main-frame");

function btn1(){
mainFrame.src = "1.%20Calculator/index.html";

}

</script>

<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.left-frame{
/* width: 100%; */
height: 999px;
}
.frames{
display: flex;
}
svg{
margin-right: 10px;
}
svg:hover{
cursor: pointer;
}
</style>
</html>
Loading

0 comments on commit 788b33c

Please sign in to comment.