Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added the navbar in the practicedsa.html #221

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 3 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
83 changes: 83 additions & 0 deletions practicedsa.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,37 @@
<html lang="en">

<head>
<!-- Required meta tags -->
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/bd43ee06c8.js" crossorigin="anonymous"></script>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css">

<link rel="shortcut icon" href="images/icon.png" type="images/icon.png" />
<link rel="stylesheet" href="css/style.css">
<title>Practice Questions</title>

<style>

header {
overflow: hidden;
height: 20vh;
}
body {
background-color: #3caea3;
margin: 10px 10px 10px 10px;
Expand All @@ -16,11 +45,65 @@

}
</style>
<script>
window.onload = function () {
var preloader = document.getElementById("preloader")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no element with id preloader so either add the element or remove this.

preloader.style.display = 'none';
}
</script>


</head>

<body>


<!-- header starts -->
<header class="fix">

<nav class="navbar navbar-expand-lg navbar-dark fixed-top nav-col">
<a class="navbar-brand" href="#"><img src="images/icon.png" alt="Algo Phantoms" width="50px"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

link this to index.html

height="50px"><span class="brand1"> <strong>Algo</span>Phantoms</strong>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 ml-auto">
<li class="nav-item active">
<a class="nav-link font-weight-bold nav-items" href="index.html">Home <span
class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold nav-items" href="index.html">About</a>
lipsa199 marked this conversation as resolved.
Show resolved Hide resolved
</li>

<li class="nav-item">
<a class="nav-link font-weight-bold nav-items" href="team.html">Team</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold nav-items" href="index.html">Contact</a>
harikesh409 marked this conversation as resolved.
Show resolved Hide resolved
</li>
<li class="nav-item dropdown">
<a class="nav-link font-weight-bold nav-items dropdown-toggle" href="#" id="navbarDropdown"
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
More
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="DSA.html">RoadMap to your DSA</a>
<a class="dropdown-item" href="practicedsa.html">DSA Problems</a>
</div>
</ul>

</div>
</nav>

</header>

<!-- header ends -->

<iframe title="PracticeDSA" style="border:none" width="1400px" height="3000px" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQDw1bOBFu39nOauhGWbF1vMF7ZkfLlyC8HUl1BxcB1sZwWrHhAYLk0iYUu1a-_Ow/pubhtml?widget=true&amp;headers=false"></iframe>

<script>
Expand Down