-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
74 lines (72 loc) · 3.95 KB
/
Copy pathabout.php
File metadata and controls
74 lines (72 loc) · 3.95 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
<?php include "config.php"; ?>
<?php include "header.php"; ?>
<div class="container-fluid my-5">
<div class="row">
<div class="col-lg-6">
<img class="img-fluid" id="" src="./images/svg/developer.svg" alt="Contact me">
<!-- <video class="img-fluid" src="images/gif/online-girl-big.webm" autoplay="true"></video> -->
</div>
<div class="col-lg-6 my-5">
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header bg-dark" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What is the motive behind this Site ?
</button>
</h2>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
I've thought that why we're not working on real world projects and at that time i think in this corona situation let me make project that help to peoples who want to know more about what is Covid-19 and how many cases in our area so they can aware by themselves.
</div>
</div>
</div>
<div class="card">
<div class="card-header bg-dark" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
About Website..!
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
Coronavirus disease (COVID-19) is an infectious disease caused by a new virus that had not been previously identified in humans. Please use the below options to learn more about the disease and keep yourself updated.
</div>
</div>
</div>
<div class="card">
<div class="card-header bg-dark" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Idea Behind This Website..
</button>
</h2>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
In This website you know about what is corona and how to be safe in this pandemic situation, as well as you can know live no of cases in your state if your live in India and you can know how much case in your country also.If you wanna contribute in this project then you should fill up contribution form.
</div>
</div>
</div>
<div class="card">
<div class="card-header bg-dark" id="headingThree">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
who is The Developer ?
</button>
</h2>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
Hi,My name is Urmil Rupareliya and this website is developed by me, I'm Python Programmer and Currently i'm doing Computer Science. I love Computers and Coding Related stuff(it's my passion).
Visit my portfolio : <a href="https://www.urmil8989.online/">Portfolio</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include "footer.php"; ?>