-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
81 lines (57 loc) · 1.62 KB
/
index.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
75
76
77
78
79
80
81
<html>
<head>
<meta name="viewport" content="width=device-width , initial-scale=1.0">
<meta name="description" content="Historic Date is an application that shows highlighted past events took place on a particular day." />
<link rel="icon" href="Taba.jpg ">
<title> Historic Date </title>
<center>
<style>
body{
background-image: url("his4.jpeg");
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: lavender;
}
.topnav {
overflow: hidden;
background-color: ;
}
.topnav a {
float: center;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: red;
}
.topnav a.active {
background-color: lightgray;
color: crimson;
}
</style>
</head>
<div class="topnav">
<a class="active" href="index.php">Home</a>
<a class="active" href="about.php">About</a>
<a class="active" href="contact.php">Contact</a>
</div>
<div style="padding-left:16px">
</div>
<body>
<h3><font color="darkkhaki" face="comic sans ms"><strong>........what happened on this day? </strong></font></h3>
<b><font color="gray" size="5"> Enter Date: </font> <br/>
<form method="POST" action="knowledge.php">
<b><font color="khaki" size=5 face="comic sans ms"> Month: </font> <input type="month" name="d" required>
<br>
<font color="olive" size=5 face="comic sans ms"> Day: <input type="number" name="m" required> <br/><br/><br/>
<button style="background-color: snow; width:51; height:26" onClick="knowledge.php">
<b>View</b></button>
</form>
</body>
</html>