-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
107 lines (91 loc) · 3.92 KB
/
aboutus.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
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
<!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="{{ url_for('static', filename='style3.css') }}">
</head>
<body>
<header>
<div class="logo">
<img src="{{ url_for('static', filename='logo.webp') }}" alt="Logo" class="logo-image">
Beyond Breast Cancer
</div>
<nav>
<a href="{{ url_for('index') }}">Home</a>
<a href="{{ url_for('blog') }}">Blog</a>
<a href="{{ url_for('aboutus') }}">About-Us</a>
<a href="{{ url_for('login_page') }}">Logout</a>
</nav>
</header>
<main>
<section class="about-us">
<div class="about-content">
<h1>About Us</h1>
<p>We are a group of students providing support and resources for those affected by breast cancer. Our goal is to offer information, emotional support, and community for breast cancer patients, survivors, and their families.</p>
</div>
<div class="mission-section">
<h2>Our Mission</h2>
<p>At Beyond Breast Cancer, we are committed to empowering individuals affected by breast cancer through accessible and affordable resources. We believe that early detection and prevention are key, which is why we’ve developed an easy-to-use breast cancer prediction model. This tool is specifically designed to be affordable, especially for those in underserved communities. Our mission is to raise awareness and provide individuals with the tools they need to take control of their health, ensuring that no one faces breast cancer without support.</p>
</div>
<div class="values-section">
<h2>Our Values</h2>
<ul>
<li><strong>Empathy:</strong> We are committed to providing compassionate care and understanding.</li>
<li><strong>Integrity:</strong> We operate with honesty and transparency in everything we do.</li>
<li><strong>Community:</strong> We foster a supportive environment for everyone affected by breast cancer.</li>
<li><strong>Hope:</strong> We inspire hope through education, support, and outreach.</li>
</ul>
</div>
<div class="team-section">
<h2>Meet Our Team</h2>
<!-- Team Member 1 -->
<div class="team-member">
<img src="{{ url_for('static', filename='t1.jpeg') }}" alt="Logo" class="logo-image">
<div class="team-info">
<h3>Tanmay Gupta</h3>
<p>23BDS061</p>
</div>
</div>
<!-- Team Member 2 -->
<div class="team-member">
<img src="{{ url_for('static', filename='t2.jpeg') }}" alt="Logo" class="logo-image">
<div class="team-info">
<h3>Yashpreet Singh</h3>
<p>23BDS072</p>
</div>
</div>
<!-- Team Member 3 -->
<div class="team-member">
<img src="{{ url_for('static', filename='t3.jpeg') }}" alt="Logo" class="logo-image">
<div class="team-info">
<h3>Harsh Raj</h3>
<p>23BDS076</p>
</div>
</div>
<!-- Team Member 4 -->
<div class="team-member">
<img src="{{ url_for('static', filename='t2.jpeg') }}" alt="Logo" class="logo-image">
<div class="team-info">
<h3>Vishwajeet Yadav</h3>
<p>23BDS069</p>
</div>
</div>
<!-- Team Member 5 -->
<div class="team-member">
<img src="{{ url_for('static', filename='t2.jpeg') }}" alt="Logo" class="logo-image">
<div class="team-info">
<h3>Vijal Pal Singh</h3>
<p>23BDS067</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer Section -->
<footer>
<p>© 2024 Beyond Breast Cancer. All Rights Reserved.</p>
</footer>
</body>
</html>