-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
68 lines (66 loc) · 2.49 KB
/
contact.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
67
68
<?php
include("includes/header.php");
?>
<link rel="stylesheet" href="./css/view_suggestions.css" />
<link rel="stylesheet" href="css/view_tickets.css" />
<title>Contact Us</title>
<?php
include("includes/nav.php");
?>
<table style="margin:20px;margin-top:80px;background-color: transparent; width: auto; margin-bottom: 15px; font-size: .9em; border-spacing: 0; border-collapse: collapse;border:1px solid black" border=1>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
<th>Office</th>
<th>Address</th>
<th>Contact Person</th>
</tr>
</thead>
<tbody>
<tr>
<td>का.म.पा रोजगार सेवा केन्द्र</td>
<td></td>
<td>9851279303</td>
<td>सामाजिक विकास विभाग</td>
<td>काठमाडौं प्लाजा, कमलादी</td>
<td>रश्मी राई</td>
</tr>
<tr>
<td>Toll Free Number</td>
<td>[email protected]</td>
<td>1180 / 16600105511</td>
<td>Kathmandu Metropolitan City, Call Center</td>
<td>Rastrya Sabhagriha Hall, Pradarshani Marg, kathmandu</td>
<td>Bharat Pokharel </td>
</tr>
<tr>
<td>Covid 19 Vaccine Certificate QR Verify Focal Point</td>
<td></td>
<td>9857823482</td>
<td>Health Department (Vaccine Certificate Verify Unit)</td>
<td>Rastrya Sabhagriha Hall, Bhrikuti Mandap</td>
<td>Gyan Bahadur Oli</td>
</tr>
<tr>
<td>Covid 19 Vaccine Certificate QR Verify Focal Point</td>
<td></td>
<td>9851189979</td>
<td>Health Department (Vaccine Certificate Verify Unit)</td>
<td>Rastrya Sabhagriha Hall, Bhrikuti Mandap</td>
<td>Rishi Bhusal </td>
</tr>
<tr>
<td>प्रमुखको सचिवालय</td>
<td>[email protected]</td>
<td>9851081972</td>
<td>काठमाडौ महानगरपालिका</td>
<td>राष्ट्रिय सभागृह, प्रदर्शनी मार्ग</td>
<td>नुरनिधि न्यौपाने</td>
</tr>
</tbody>
</table>
<?php include("includes/footer.php"); ?>
</body>
</html>