forked from Bengaluru18/team-9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteacher.php
66 lines (58 loc) · 2.13 KB
/
teacher.php
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
<html>
<head>
<title>Careworks Foundation</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<header id="header">
<div class="inner">
<a href="index.html" class="logo"><strong>A Non-profit Organisation</strong></a>
<nav id="nav">
<a href="index.html">Home</a>
<a href="contactus.html">Contact Us</a>
</nav>
<a href="#navPanel" class="navPanelToggle"><span class="fa fa-bars"></span></a>
</div>
</header>
<section id="banner">
<div class="inner">
<header>
<img src="images/logo.png" alt="Pic 01" /><h1>Careworks Foundation</h1>
</header>
<div class="flex">
<div>
<span class="icon fa-camera"></span>
<h3>TEACHER MENTORSHIP</h3>
<p>The most valuable skills of the teachers</p>
</div>
</div>
<footer>
<div class="button" class="button" onclick="openTab('b1')">Learn More</div>
</footer>
</div>
</section>
<div id="b1" class="containerTab" style="display:none;">
<span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<h2>Health Camps</h2>
<p>
In India more than two million children lose their lives every year to vaccine-preventable infectious diseases. Though health checkup camps, CWF identifies children who are either suffering from any such disease or haven’t been given basic vaccines and provides further treatment accordingly. CWF carries out screening of general health, common skin conditions, dental and eye check-ups among children of our adopted schools.
</p>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
function openTab(tabName) {
var i, x;
x = document.getElementsByClassName("containerTab");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(tabName).style.display = "block";
}
</script>
</body>
</html>