-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (67 loc) · 2.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
<style>
* {
padding: 0px;
margin: 0px;
}
h2 {
margin-bottom: 8pt;
}
h1{
margin: 15px 0px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: #6f3c34;
text-shadow: 1px 1px 5px rgb(88, 88, 88);
}
.container {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: grid;
grid-template-columns: repeat(5, 1fr);
border: 10px solid transparent;
padding: 15px;
border-image: url(https://images.pexels.com/photos/172276/pexels-photo-172276.jpeg?cs=srgb&dl=pexels-fwstudio-33348-172276.jpg&fm=jpg) 30 round;
background-color: bisque;
row-gap: 20px;
}
ul {
list-style-type: none;
padding: 0;
font-size: 20px;
}
li {
margin: 3px;
transform: scale();
}
a {
text-decoration: none;
color: blue;
}
a:hover{
color: red;
}
</style>
</head>
<body style="margin: 20px; background-color: rgb(239, 243, 197);">
<h1>Naser Alzaghari</h1>
<h1>Check my PHP Tasks down bellow:</h1>
<div class="container">
<div>
<h2>PHP_task</h2>
<ul>
<li><a href="./task1/PHP_task.php" target="_blank">PHP_task1</a></li>
<li><a href="./task2/PHP_task.php" target="_blank">PHP_task2</a></li>
<li><a href="./user_info/form.php" target="_blank">send user info</a></li>
<li><a href="./login_and_signup/index.php" target="_blank">login_and_signup</a></li>
<li><a href="./login_and_signup_2/index.php" target="_blank">login_and_signup2</a></li>
<li><a href="./sql.txt" target="_blank">MySQL tast</a></li>
</ul>
</div>
</div>
</body>
</html>