-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a18f74
commit cd2f4f5
Showing
9 changed files
with
1,965 additions
and
1,464 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -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> |
Oops, something went wrong.