-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (127 loc) · 4.55 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<title>Airport DB User Group III</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="images/airplane-icon.ico" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
nav {
background-color: #f2f2f2;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
text-decoration: none;
color: #333;
padding: 5px;
}
main {
padding: 20px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
color: #333;
}
.plane-image {
display: block;
margin: 0 auto;
width: 500px;
border-radius: 10px;
}
.logo-image {
position: absolute;
top: 1px;
left: 10px;
width: 100px;
}
.right-logo-image {
position: absolute;
top: 25px;
right: 10px;
width: 100px;
}
ul li {
word-wrap: break-word;
}
footer {
background-color: #f2f2f2;
padding: 10px;
text-align: center;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Airport DB User Group III</h1>
</header>
<nav>
<a href="https://ionio.gr" target="_blank"><img class="logo-image" src="images/uni-logo.png" alt="Logo"></a>
<a href="https://di.ionio.gr" target="_blank"><img class="right-logo-image" src="images/di.jpg" alt="DI Logo" style="width: 300px;"></a>
</nav>
<main>
<img class="plane-image" src="images/airplane.jpg" alt="Airplane">
<table style="margin-top: 20px;">
<thead>
<tr>
<th>Επιλογές</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href='show_flights_from_athens_to_corfu.php'>Εμφάνιση των πτήσεων που αναχωρούν την Τρίτη 13/06/2023 από Αθήνα για Κέρκυρα</a></td>
</tr>
<tr>
<td><a href="crews_and_hotels.php">Εμφάνιση των πληρωμάτων των πτήσεων που αναχωρούν στις 13/06/2023 από Αθήνα για Κέρκυρα και σε ποιο ξενοδοχείο μένουν</a></td>
</tr>
<tr>
<td><a href="advertising_spaces.php">Εμφάνιση των διαφημιστικών χώρων και το μέσο κόστος ενοικίασής τους</a></td>
</tr>
<tr>
<td><a href="passengers.php">Εμφάνιση όλων των ταξιδιωτών που βρίσκονται σε πτήσεις προς Αθήνα στις 17/04/2023</a></td>
</tr>
<tr>
<td><a href="tests.php">Εμφάνιση όλων των τεστ που έγιναν σε όλα τα αεροπλάνα που αναχώρησαν από την Αθήνα στις 18/03/2023</a></td>
</tr>
<tr>
<td><a href="nikolaou_pilot.php">Εμφάνιση όλων των συναντήσεων στις οποίες έχει συμμετάσχει η πιλότος "Νικολάου"</a></td>
</tr>
</tbody>
</table>
</main>
<footer>
<p>Ιόνιο Πανεπιστήμιο | Τμήμα Πληροφορικής | Μάθημα: Bάσεις Δεδομένων Ι | Ακαδημαϊκό έτος: 2022 - 2023 | Κέρκυρα</p>
</footer>
</body>
</html>