-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
61 lines (56 loc) · 1.99 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<header>
<a href="landingPage.html">
<img src="logo.png" alt="Product Logo">
</a>
<div class="navigation">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="#">proACTIVE</a>
<ul class="dropdown">
<li><a href="fallDect.html">FallDect</a></li>
<li><a href="reminder.html">Reminder</a></li>
<li><a href="assistance.html">Assistance</a></li>
</ul>
</li>
<li><a href="solutions.html">Solutions</a></li>
<li><a href="login.html">Login</a>
</li>
<li><a href="contact.html" class="contact-button">Contact Us</a></li>
</ul>
</div>
</header>
<main>
<div class="image-container">
<img src = 'https://www.hirerush.com/blog/wp-content/uploads/2016/06/bigstock-Elderly-Woman-Is-Assisted-By-N-70969789.jpg' alt = 'About Image 1'>
</div>
<div class = "bubble">
<h2>About Us</h2>
<p>
We are a company dedicated to providing innovative solutions for proactive health management. Our products, including FallDect, Reminder, and Assistance, are designed to enhance the quality of life for our users.
</p>
</div>
<div class = "bubble">
<h2>Our Mission</h2>
<p>
Our mission is to empower individuals to take control of their health and wellness through innovative technology solutions.
</p>
</div>
<div class = "bubble">
<h2>Our Team</h2>
<p>
Our team is composed of dedicated professionals with diverse backgrounds in health, technology, and design. We are united by our commitment to improving health outcomes through user-friendly technology.
</p>
</div>
</main>
<script src="landingPage.js"></script>
</body>
</html>