-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
151 lines (142 loc) · 6.98 KB
/
Copy pathteam.html
File metadata and controls
151 lines (142 loc) · 6.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Our team</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="styles/navbar.css">
<link rel="stylesheet" href="styles/team.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<div class="body-cont">
<body>
<!--Navbar code-->
<div id="toggleMenu" onclick="toggleMenu()"></div>
<nav class="navbar" id="menu">
<div class="navbar_container">
<div class="navbar_top">
<div class="navbar_up">
<a href="index.html" class="navbar_logo"><img id="navbar_logo" src="temp_logo.png">
<p>Femhealth</p>
</a>
</div>
<ul class="navbar_mid">
<li><a href="articles.html" class="navbar_button">
<div class="button_items"><span class="material-icons">description</span>
<p>Articles</p>
</div>
</a></li>
<li><a href="about.html" class="navbar_button">
<div class="button_items"><span class="material-icons">info</span>
<p>About Femhealth</p>
</div>
</a></li>
<li><a href="team.html" class="navbar_button">
<div class="button_items"><span class="material-icons">face</span>
<p>Meet the team</p>
</div>
</a></li>
<li><a href="promotion.html" class="navbar_button">
<div class="button_items"><span class="material-icons">supervisor_account</span>
<p>Affiliated associations</p>
</div>
</a></li>
<li><a href="contact.html" class="navbar_button">
<div class="button_items"><span class="material-icons">send</span>
<p>Contact us</p>
</div>
</a></li>
<!-- <li><a href="ressources.html" class="navbar_button">
<div class="button_items"><span class="material-icons">psychology_alt</span>
<p>Ressources</p>
</div>
</a></li> -->
</ul>
</div>
<div class="navbar_down">
<div id="toggleMenu" onclick="toggleMenu()"><img src="flowers/flower4.svg" class="flower"></div>
<!-- <a href="" class="navbar_lang">FR</a> -->
</div>
</div>
</nav>
<div class="team-content">
<h1>Our team</h1>
<h2>Meet the people who make Femhealth possible</h2>
<h3>Page Under Construction</h3>
<img src="undraw_under-construction_c2y1.svg" alt="Page under construction">
</div>
<footer>
<div class="footer-top">
<div class="footer-top-container">
<div class="footer-top-left">
<img src="temp_logo.png" alt="FemHealth Logo">
<div class="footer-top-button">
<a href="contact.html">Contact Us</a>
</div>
</div>
<div class="footer-top-middle">
<a href="index.html">Home</a>
<a href="articles.html">Articles</a>
<a href="team.html">About Us</a>
</div>
<div class="footer-top-right">
<h2>Slogan of FemHealth or Cute Quote about Women would go here!</h2>
</div>
</div>
<div class="footer-top-button">
<a href="#">Go back to the top <i class="fa-solid fa-chevron-up"></i> </a>
</div>
</div>
<div class="footer-bottom">
<div class="footer-bottom-item">
<p>Made with <i class="fa-solid fa-heart"></i> by the FemHealth Dev Team</p>
</div>
<div class="footer-bottom-item">
<p>Copyright © 2025 FemHealth. All Rights Reserved.</p>
</div>
<div class="footer-bottom-item">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-facebook"></i></a>
</div>
</div>
</footer>
<script>
let toggleStatus = true;
const flower = document.querySelector('.flower');
function toggleMenu() {
if (toggleStatus) {
document.getElementById('menu').style.left = '-500px';
document.getElementsByClassName('body-cont')[0].style.marginLeft = '0px';
document.getElementsByClassName('body-cont')[0].style.width = '100%';
} else {
document.getElementById('menu').style.left = '0px';
document.getElementsByClassName('body-cont')[0].style.marginLeft = '250px';
document.getElementsByClassName('body-cont')[0].style.width = 'calc(100% - 250px)';
}
flower.classList.toggle('active');
toggleStatus = !toggleStatus;
}
{
const nav = document.querySelector('.navbar')
let lastScrollY = window.scrollY;
window.addEventListener('scroll', () => {
let difference = window.scrollY - lastScrollY;
if (lastScrollY < window.scrollY && window.scrollY > 450 && difference > 50) {
if (toggleStatus) {
toggleMenu();
}
}
lastScrollY = window.scrollY;
});
}
</script>
</body>
</div>
</html>