Spaces:
Running
Running
File size: 2,122 Bytes
207fedd |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<style>
body {
font-family: 'Roboto', sans-serif;
margin-top: 20px;
}
.footer {
width: 100%;
font-size: 16px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
}
.footer img {
width: 100px;
vertical-align: middle;
margin-bottom: 0px;
padding-bottom: 0px;
}
.footer .center-text {
text-align: center;
}
.footer .page-number {
text-align: right;
}
.footer a {
color: #0000EE;
text-decoration: none;
}
.page {
font-weight: bold;
font-size: 10px;
margin-bottom: 0px;
padding-bottom: 0px;
}
</style>
</head>
<body>
<div class="footer">
<img src="https://static.wixstatic.com/media/d7d3da_b69e03ae99224f7d8b6e358918e60071~mv2.png/v1/crop/x_173,y_0,w_1906,h_938/fill/w_242,h_119,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/BZIIIT_LOGO-HORIZ-COULEUR.png" alt="Logo" />
<div class="center-text">
bziiit | Open data & IA RSE | <a href="https://huggingface.co/spaces/bziiit/OpenData-Bordeaux-RSE">https://huggingface.co/spaces/bziiit/OpenData-Bordeaux-RSE</a>
</div>
<div class="page-number">
<span class="page"></span>
</div>
</div>
</body>
</html>
|