46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Home</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
.station-links {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 20%;
|
|
}
|
|
|
|
.station-links a {
|
|
margin: 0 20px;
|
|
font-size: 24px;
|
|
text-decoration: none;
|
|
padding: 10px 20px;
|
|
background-color: #007bff;
|
|
color: white;
|
|
border-radius: 8px;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.station-links a:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="station-links">
|
|
<a href="station1.html">Station 1</a>
|
|
<a href="station2.html">Station 2</a>
|
|
<a href="station3.html">Station 3</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
|
|
</html> |