-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
74 lines (68 loc) · 1.43 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
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="myscript1.js"></script>
<script src="myscript2.js"></script>
<style>
body
{
background-image:url("covid.jpg");
background-size:100%;
}
h1
{
border:10px solid green;
background-color:orange;
}
h1:hover
{
transform:scale(1.1);
background-color:cyan;
}
.details
{
margin:10px;
padding:20px;
border:5px solid grey;
}
#legend
{
color:brown;
}
h3
{
color:Pink;
}
h2
{
color:cyan;
}
#title
{
color:brown;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Covid-19 Detector</a>
</div>
<ul class="nav navbar-nav">
<li><a href="index.php">Home</a></li>
<li class="active"><a href="#">Contact Us</a></li>
</ul>
</div>
</nav>
<h1 align="center">COVID-19 DETECTOR</h1>
<br>
<h2 id="title">Developed By:-</h2>
<h2>Shashank Shekhar (BCA Student)</h2>
<h2>This is a project not exact Covid 19 Virus Detector. So Please Consult Doctors Immediately if you are Feeling Sick.</h2>
</body>
</html>