-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
65 lines (63 loc) · 1.68 KB
/
index.php
File metadata and controls
65 lines (63 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PHP Tutorial Index</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 40px;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
a {
text-decoration: none;
color: #007bff;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.gird-layout{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.grid-item{
display: contents;
}
</style>
</head>
<body>
<h1>📘 PHP Tutorial Index</h1>
<div class="gird-layout">
<ul class="grid-item">
<li><a href="variable.php">Hello World</a></li>
<li><a href="AmstrongNumber.php">AmstrongNumber</a></li>
<li><a href="arrays.php">Arrays</a></li>
<li><a href="Associative_arrays.php">Associative Arrays</a></li>
<li><a href="embed.php">Embed</a></li>
<li><a href="evenOdd.php">Even Odd Numbers</a></li>
<li><a href="factorial.php">Factorial</a></li>
<li><a href="fibonacci.php">Fibonacci</a></li>
<li><a href="palindrome.php">Palindrome</a></li>
<li><a href="primeNumber.php">Prime Number</a></li>
<li><a href="reverse.php">Reverse Number</a></li>
<li><a href="sumofdigit.php">Sum of digit</a></li>
<li><a href="SwpingNumber.php">Swping Number</a></li>
</ul>
</div>
</body>
</html>