-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforum.html
More file actions
122 lines (109 loc) · 4.67 KB
/
Copy pathforum.html
File metadata and controls
122 lines (109 loc) · 4.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Forum</title>
<link href="./style.css" rel="stylesheet" type="text/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=Raleway&display=swap" rel="stylesheet">
</head>
<!-- header -->
<body>
<h1 id="forum-header"> Forums </h1>
<header>
<h3><nav>
<a href="index.html">Home</a>
<a href="reproductive-health.html">Reproductive Health</a>
<a href="mental-health.html">Mental Health</a>
<a href="connect.html">Connect</a>
<a href="forum.html">Forum</a>
<a href="about-us.html">About Us</a>
</nav></h3>
</header>
<!-- main body -->
<!-- new -->
<div class="forum-main">
<div class="forum-content">
<p>Welcome! This is a safe and non-judgemental space for individuals to openly talk about your health concerns.
</p>
<b>Here's what you can expect from our Forum:
<br>
<li>A Safe and Confidential Environment</li>
<li>An Inclusive Community</li>
<li>Empowerment and Education</li>
<li>Non-Judgmental Support</li>
</b>
</div>
</div>
<div class="post-container">
<div class="post">
<div class="user-profile">
<img src="https://images.pexels.com/photos/2836485/pexels-photo-2836485.jpeg?auto=compress&cs=tinysrgb&w=1600" alt="User Profile Image" width="70" height="70" style="clip-path: circle()">
<span class="user-name"><h3>Jose Doe</h3></span>
</div>
<div class="post-content">
<p>I need help getting a support group that meets online for expecting mothers. Is there any online I can join?</p>
</div>
<div class="comments">
<div class="comment">
<span class="user-name">Alice:</span>
<p>Yes, we have a group just for expecting parents. Let me send you the information for it! </p>
</div>
<!-- More comments can be added here -->
</div>
<div class="add-comment">
<input type="text" placeholder="Add a comment..." class="comment-input">
<button class="comment-button"><b>Post</b></button>
</div>
</div>
<div class="post">
<div class="user-profile">
<img src="https://images.pexels.com/photos/1624229/pexels-photo-1624229.jpeg?auto=compress&cs=tinysrgb&w=600" width="70" height="70" style="clip-path: circle()">
<span class="user-name"><h3>Jane Smith</h3></span>
</div>
<div class="post-content">
<p>Breaking News! A new and upcoming bill to resurrect reproductive rights is in the Congress right now! Let's petition and show the public support for it!</p>
</div>
<div class="comments">
<div class="comment">
<span class="user-name">Barbara:</span>
<p>Signed the petition, hoping I made a difference for the future! :)</p>
</div>
<!-- More comments can be added here -->
</div>
<div class="add-comment">
<input type="text" placeholder="Add a comment..." class="comment-input">
<button class="comment-button"><b>Post</b></button>
</div>
</div>
<div class="post">
<div class="user-profile">
<img src="https://images.pexels.com/photos/2272853/pexels-photo-2272853.jpeg?auto=compress&cs=tinysrgb&w=600" alt="User Profile Image" height="70px" width="70px" style="clip-path: circle()">
<span class="user-name"><h3>Sara Johnson</h3></span>
</div>
<div class="post-content">
<p>I have been having difficulties finding the little joys in life right. Can anyone share what gets you through your day?</p>
</div>
<div class="comments">
<div class="comment">
<span class="user-name">Charlie:</span>
<p>My dog cuddling up to me! </p>
</div>
<!-- More comments can be added here -->
</div>
<div class="add-comment">
<input type="text" placeholder="Add a comment..." class="comment-input">
<button class="comment-button"><b>Post</b></button>
</div>
</div>
</div>
<!-- footer -->
<footer>
<p>Made with ❤️ by women</p>
<img src=Images/logo.png alt="She Resource Hub Logo" class="logo" style=width:70px style=height:70px>
</footer>
<script src="script.js"></script>
</body>
</html>