-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomunity.html
More file actions
116 lines (109 loc) · 3.51 KB
/
comunity.html
File metadata and controls
116 lines (109 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Health Workers Community</title>
<link rel="icon" type="png" href="file.png">
<link rel="stylesheet" href="style.css">
<script src="theme.js"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #a1c4fd;
color: white;
padding: 20px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #007BFF;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 18px;
}
nav a:hover {
text-decoration: underline;
}
.container {
padding: 20px;
}
.section {
margin-bottom: 20px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #003d80;
color: white;
position: relative;
bottom: 0;
width: 100%;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #003d80;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
}
.button:hover {
background-color: #a1c4fd;
}
</style>
</head>
<body>
<header>
<h1>Health Workers Community</h1>
<p>Connecting Doctors for Collaboration, Knowledge Sharing, and Growth</p>
</header>
<nav>
<a href="forum.html">Forum</a>
<a href="resources.html">Resources</a>
<a href="events.html">Events</a>
<a href="network.html">Network</a>
</nav>
<div class="container">
<section id="forum" class="section">
<h2>Discussion Forum</h2>
<p>Engage in meaningful discussions, share insights, and seek advice from peers.</p>
<a href="forum.html" class="button">Join the Forum</a>
</section>
<section id="resources" class="section">
<h2>Resources</h2>
<p>Access a curated list of medical articles, guidelines, and tools to enhance your practice.</p>
<a href="resources.html" class="button">Explore Resources</a>
</section>
<section id="events" class="section">
<h2>Upcoming Events</h2>
<p>Stay updated on conferences, webinars, and community meetups for health professionals.</p>
<a href="events.html" class="button">View Events</a>
</section>
<section id="network" class="section">
<h2>Professional Networking</h2>
<p>Build your network with other doctors and health workers worldwide.</p>
<a href="network.html" class="button">Connect Now</a>
</section>
</div>
<footer>
<p>© 2025 Health Workers Community. All rights reserved.</p>
</footer>
</body>
</html>