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

Made navbar buttons working #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
<a class="nav-link" href="#About">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
<a class="nav-link" href="#Services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Team</a>
<a class="nav-link" href="#Meet">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Connect</a>
<a class="nav-link" href="#Connect">Connect</a>
</li>
</ul>
</div>
Expand Down Expand Up @@ -78,7 +78,7 @@ <h3>Complete Website Layout</h3>
<div class="container-fluid" data-aos="fade-up"
data-aos-offset="200"
data-aos-delay="50"
data-aos-duration="1000">
data-aos-duration="1000" id="About">
<div class="row jumbotron">
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9 col-xl-10">
<p class="lead">A web hosting service allows individuals and
Expand Down Expand Up @@ -139,7 +139,7 @@ <h3>CSS3</h3>
<div class="container-fluid padding"data-aos="fade-up"
data-aos-offset="200"
data-aos-delay="50"
data-aos-duration="1000">
data-aos-duration="1000" id="Services">
<div class="row padding">
<div class="col-md-12 col-lg-6">
<h2>If you build it...</h2>
Expand All @@ -163,7 +163,7 @@ <h2>If you build it...</h2>


<!--- Meet the team -->
<div class="container-fluid padding">
<div class="container-fluid padding" id="Meet">
<div class="row welcome text-center">
<div class="col-12">
<h1 class="display-4">Meet the Team </h1>
Expand Down Expand Up @@ -243,7 +243,7 @@ <h2>Our Philosophy</h2>
<!--- Connect -->
<div class="container-fluid padding">
<div class="row text-center padding">
<div class="col-12">
<div class="col-12" id="Connect">
<h2>Connect</h2>
</div>
<div class="col-12 social padding">
Expand Down