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

Fixed Issue #520 regarding navbar alignment and including spaces. #532

Closed
Closed
Changes from all 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
20 changes: 12 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,20 @@
<a href="index.html">
<h4>DATA SCIENCE</h4>
</a>
<ul class="nav__menu">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#faqs">FAQ</a></li>
<li><a href="contact/index.html">Contact</a></li>
<li><a class="signup" href="./login/index.html">Sign Up</a></li>
</ul>
<br> <br>
<button id="open-menu-btn"><i class="uil uil-bars"></i></button>
<button id="close-menu-btn"><i class="uil uil-multiply"></i></button>
<ul class="nav__menu">
<h4>
<li style="display:inline"><a href="index.html">Home &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</a></li>
<li style="display:inline"><a href="#about">About &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</a></li>
<li style="display:inline"><a href="#courses">Courses &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</a></li>
<li style="display:inline"><a href="#faqs">FAQ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</a></li>
<li style="display:inline"><a href="contact/index.html">Contact &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</a></li>
<li style="display:inline"><a class="signup" href="./login/index.html">Sign Up</a></li>
</h4>
</ul>

</div>
</nav>
</header>
Expand Down