Skip to content

Commit

Permalink
navbar-home-icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Harshitha-devstar committed Oct 7, 2024
1 parent 3a18f74 commit cd2f4f5
Show file tree
Hide file tree
Showing 9 changed files with 1,965 additions and 1,464 deletions.
570 changes: 327 additions & 243 deletions features.html

Large diffs are not rendered by default.

90 changes: 61 additions & 29 deletions home.html
Original file line number Diff line number Diff line change
@@ -1,39 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>AmbuFlow</title>
</head>
<body>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="images/logo2-w.webp" alt="Ambulance Monitoring System Logo" style="width:50px; height:auto;">
</div>
<nav class="menu">
<ul>
<li><a href="home.html" id="home-link" onclick="changeContent('home')">Home</a></li>
<li><a href="features.html" id="features-link" onclick="changeContent('features')">Features</a></li>
<li><a href="team.html" id="team-link" onclick="changeContent('team')">Team</a></li>
<li><a href="contact.html" id="contact-link" onclick="changeContent('contact')">Contact</a></li>
</ul>
</nav>
<div class="buttons">
<a href="login.html" class="login">Log in</a>
<a href="up.html" class="get-started">Get started</a>
</div>
<div class="menu-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="container">
<div class="logo">
<a href="./index.html" target="_self">
<img
src="images/logo2-w.webp"
alt="Ambulance Monitoring System Logo"
style="width: 50px; height: auto"
/>
</a>
</div>
<nav class="menu">
<ul>
<li>
<a
href="./index.html"
target="_self"
id="home-link"
onclick="changeContent('home')"
>Home</a
>
</li>
<li>
<a
href="features.html"
id="features-link"
onclick="changeContent('features')"
>Features</a
>
</li>
<li>
<a href="team.html" id="team-link" onclick="changeContent('team')"
>Team</a
>
</li>
<li>
<a
href="contact.html"
id="contact-link"
onclick="changeContent('contact')"
>Contact</a
>
</li>
</ul>
</nav>
<div class="buttons">
<a href="login.html" class="login">Log in</a>
<a href="up.html" class="get-started">Get started</a>
</div>
<div class="menu-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</header>
<main>
<div id="content"> <!-- Content will change dynamically here --> </div>
<div id="content"><!-- Content will change dynamically here --></div>
</main>
<script src="script.js"></script>
</body>
</body>
</html>
Loading

0 comments on commit cd2f4f5

Please sign in to comment.