-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
78 lines (69 loc) · 1.84 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
<?php require 'connection.php'; ?>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>PHP Online Course For Learning</title>
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Hind" rel="stylesheet">
<style type="text/css">
.main{
width: 75%;
margin: 10px auto;
background: #c0d6d8;
}
.header,.footer{
background: #46592dc4;
color: #e0e0d6;
text-align: center;
height: 87px;
font-family: 'Josefin Sans', sans-serif;
border-radius: 4px 4px 0px 0px;
}
.content{
min-height: 400px;
padding: 5px;
}
input[type="text"],input[type="email"],input[type="password"],select{
/*width: 200px;
height: 36px;*/
padding: 4px;
font-size: 18px;
margin: 4px;
}
input[type="submit"]{
width: 75px;
height: 40px;
background: #9cc59f;
border: 1px solid black;
font-size: 18px;
color: blue;
border-radius: 5px;
cursor: pointer;
}
.content p{font-size:19px; font-family: 'Hind', sans-serif;}
.content h2{margin:0px; text-align:center; padding:5px; font-family: 'Arial';}
.header h1, .header p, .footer h1, .footer p{margin:0px; padding: 5px;}
.footer a{text-decoration:none; color:brown;}
</style>
</head>
<body>
<div class="main">
<div class="header">
<h1>PHP Basic Fundamental Course</h1>
<p>Learn and Enjoy</p>
</div>
<div class="content">
<h2> PHP Select Data Using PDO - Tutorial 39 </h2>
<hr>
<?php
?>
</div>
<div class="footer">
<h1>Instructor Ariful Islam <?php echo date('Y'); ?></h1>
<p>© Copyright <a href="https://www.youtube.com/channel/UCIoDbAdMtNye5uR3riRZZsA" target="_blank">Ariful Islam</a></p>
</div>
</div>
</body>
</html>