-
Notifications
You must be signed in to change notification settings - Fork 192
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
lipsa199
wants to merge
6
commits into
Algo-Phantoms:master
Choose a base branch
from
lipsa199:issue_214
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f6da5c7
added the navbar in the practicedsa.html
fbedc96
added the navbar in the practicedsa.html page
0bdf660
added index.html and css file to practicedsa.html
869d099
added the index.html#footer and index.html#about
563997e
Merge branch 'master' into issue_214
lipsa199 e6b1ca6
Update practicedsa.html
lipsa199 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
@@ -16,11 +45,65 @@ | |
|
||
} | ||
</style> | ||
<script> | ||
window.onload = function () { | ||
var preloader = document.getElementById("preloader") | ||
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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. link this to |
||
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&headers=false"></iframe> | ||
|
||
<script> | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.