56 lines
2.0 KiB
HTML
56 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Cerca su ER-TPL</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap" rel="stylesheet">
|
|
<link rel="shortcut icon" href="https://drive-vichingo455.duckdns.org/apps/files_sharing/publicpreview/dydYxaqMrKce3Zj?file=/Immagini%20sito/atcma.png" type="image/x-icon">
|
|
<style>
|
|
.product-card {
|
|
padding: 10px;
|
|
margin: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
background-color: #282828;
|
|
width: 300px;
|
|
}
|
|
|
|
.product-card img {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: 6px;
|
|
}
|
|
#bus-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
#searchBar {
|
|
padding: 10px;
|
|
width: 300px;
|
|
margin: 20px;
|
|
font-size: 16px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
<li><h1 style="color:red;">ATTENZIONE! Il sito è ancora in fase di sviluppo e molte pagine non funzionano o portano a collegamenti sbagliati!</a></li>
|
|
</ul>
|
|
<ul>
|
|
<li><a href="/index.html"><h1 style="font-size: 100%;font-weight: 500;">Home</h1></a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<h1>Cerca una matricola</h1>
|
|
<p>In questa pagina puoi cercare un veicolo in base alla sua matricola. <br>Inoltre, potrai cliccare sopra al bus per andare alla sua pagina apposita.</p>
|
|
<input type="text" id="searchBar" placeholder="Inserisci la matricola...">
|
|
<div id="bus-container"></div>
|
|
<script src="/search.js"></script>
|
|
</body>
|
|
</html>
|