-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
50 lines (43 loc) · 1018 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP Playground</title>
<style>
body {
color: white;
background-color: black;
}
a:link {
color: red;
}
a:visited {
color: pink;
}
a:link:active,
a:visited:active {
color: salmon;
}
</style>
</head>
<body>
<main>
<h1>Books</h1>
<ul>
<li>
<a href="php-and-mysql/index.php">
PHP & MySQL: Server-side Web Development
</a>
</li>
<li>
<a href="programming-php/index.php">
Programming PHP: Creating Dynamic Web Pages
</a>
</li>
</ul>
<h2>Playground</h2>
<a href="playground.php">PHP Playground</a>
</main>
</body>
</html>