-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.html
43 lines (41 loc) · 1.48 KB
/
content.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reachout Consel</title>
<link rel="stylesheet" href="css/content_page.css" type="text/css" />
</head>
<body>
<div id="category">
<div class="category1" id="category_content">
<div class="chat_heading">
<h3 id="content_heading"></h3>
</div>
<p id="content_description"></p>
<div class="chat_spn">What is it?</div>
<p id="content_advice" class="bubble-right"></p>
<div class="chat_span">Word from the expert</div>
<!-- <p id="counsellor_email" class="bubble-right">[email protected]</p>
<div class="chat_span">Reachout Email</div> -->
<div class="meeting_section">
<div class="meeting_category">UPCOMING EVENTS ON <span id="event_category"></span></div>
<table id="meeting_table">
<tr>
<th>Host</th>
<th>Time</th>
<th>link</th>
</tr>
<tr>
<td id="meeting_host">Jane Njoroge</td>
<td id="meeting_time">10:30 AM- 11:30 AM 28/10/2021</td>
<td id="meeting_link"><a href="meet.google.com/evt-fqqo-uwc">Meeting Link</a></td>
</tr>
</table>
</div>
</div>
</div>
</body>
<script src="js/content.js"></script>
</html>