-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphplessons.html
executable file
·74 lines (66 loc) · 2.49 KB
/
phplessons.html
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
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> php lessons</title>
<style>
table {
border-collapse: collapse;
width: 100%;
height: 100%;
}
.leftside {
margin: 0;
padding: 0;
width: 200px;
background-color: rgb(255, 255, 255);
border-right: 2px solid black;
border-left: 2px solid black;
border-bottom: 2px solid black;
}
a {
text-decoration: none;
color: rgb(0, 0, 0);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
align-content: center;
}
td {
vertical-align: top;
}
a:hover {
color: rgb(255, 255, 255);
background: transparent;
background-color: rgb(0, 250, 154);
border-radius: 5px;
}
div{
width: 100%;
border-bottom: 1px black solid;
align-content: center;
}
</style>
</head>
<body style="margin: 0;">
<table>
<tr>
<td class="leftside">
<div><a href="php/phphome.php" target="content">PHP Home</a></div>
<div><a href="php/array.php" target="content">PHP Array</a></div>
<div><a href="php/functions.php" target="content">PHP Functions</a></div>
<div><a href="php/operators.php" target="content">PHP Operators</a></div>
<div><a href="php/cbseresults.php" target="content">PHP CBSE Results</a></div>
<div><a href="php/class.php" target="content">PHP Class</a></div>
<div><a href="php/data.php" target="content">PHP Data</a></div>
<div><a href="php/forloop.php" target="content">PHP Forloop</a></div>
<div><a href="php/marklist.php" target="content">PHP Marklist</a></div>
<div><a href="php/results.php" target="content">PHP Results</a></div>
<div><a href="php/loop.php" target="content">PHP Loop</a></div>
</td>
<td class="rightside">
<iframe src="php/phphome.php" name="content" height="100%" width="100%" style="border: none;"></iframe>
</td>
</tr>
</table>
</body>
</html>