-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
108 lines (90 loc) · 3.91 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>TwidGrid</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="https://fonts.googleapis.com/css?family=Squada+One|Source+Code+Pro|Merriweather:300|Abril+Fatface" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="inc/standard.css">
<link rel="icon" type="image/x-icon" href="img/favicon.png">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.head
{
position: relative;
background-size: cover;
background-image: url('img/surface.jpg');
background-position: center;
min-height: 400px;
}
.responsive-table {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
padding: 16px;
list-style-type: none;
margin: 0;
}
.table-cell {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 16px;
}
.table-cell img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
.table-cell h3 {
margin: 12px 0 8px;
font-size: 1.2em;
color: #333;
}
.table-cell p {
margin: 0;
font-size: 0.9em;
color: #666;
}
</style>
</head><body>
<div class="cont">
<div id="head"><div class="block"><a href="index.html" class="not"><div class="ban">TwidGrid</div></a></div></div>
<div class="head">
<div class="block" style="padding-top: 79px;">
<h3>TwidGrid</h3><span class="fo-5">Explore, discover, and connect. It all starts here.</span>
<p></p><p></p>
<div><a class="btn-1" href="search/index.html">Search</a></div>
</div></div>
<div class="block-978" style="padding-bottom: 39px;">
<p><p>
<ul class="responsive-table">
<li class="table-cell"><a href=" fifaworldcup/index.html "><img src="img/ fifaworldcup.png " alt=" FIFA World Cup "></a><h3> FIFA World Cup </h3><p> FIFA World Cup tournaments, all the records and statistics. </p></li>
<li class="table-cell"><a href=" malta/index.html "><img src="img/ malta.png " alt=" Malta "></a><h3> Malta </h3><p> Discover Malta, Gozo and its other islands, its history, people and culture. </p></li>
<li class="table-cell"><a href=" movies/index.html "><img src="img/ movies.png " alt=" Movies "></a><h3> Movies </h3><p> Movies, Television Shows and Media Franchises. </p></li>
<li class="table-cell"><a href=" music/index.html "><img src="img/ music.png " alt=" Music "></a><h3> Music </h3><p> Top charted songs, music videos, golden oldies and more! </p></li>
<li class="table-cell"><a href=" sports/index.html "><img src="img/ sports.png " alt=" Sports "></a><h3> Sports </h3><p> Stay updated with the latest championship results, rankings, and highlights from major sports leagues and tournaments around the world. </p></li>
<li class="table-cell"><a href=" todayinhistory/index.html "><img src="img/ todayinhistory.png " alt=" Today in History "></a><h3> Today in History </h3><p> Unlock the Past: Discover What Happened Today in History! </p></li>
</ul>
</div></div>
<footer class="foot">
<div class="block fo-1">
TwidGrid is a small web development studio based in Central Malta.
<p>© <span id="current-year"></span> TwidGrid. Est Malta.</p>
</div>
</footer>
<script>
// JavaScript to update the year dynamically
document.getElementById("current-year").textContent = new Date().getFullYear();
</script>
</body>
</html>