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
| <!doctype html>
<html lang="fr">
<head>
<title>[...]</title>
<link rel="stylesheet" type="text/css" href="[...]/style.css">
<style type="text/css">
h1{
text-align:center;
}
.flex-container {
display: flex;
box-shadow: 1px 1px 1px 1px #CAC6C6;
width:97%;
}
.flex-link{
color:#666666;
flex: 5;
}
.decors_letter{
font-size: 30px;
color:white;
background-color:#00C590;
text-align:center;
flex: 1;
display:flex;
align-items:center;
justify-content:center;
}
.warning_text_box{
text-align:center;
color:red;
font-weight:bold;
align-items:center;
justify-content:center;
display:flex;
font-size:20px;
}
.warning_box{
display:flex;
width:33%;
align-items:center;
justify-content:center;
}
</style>
</head>
<body>
<h1>Anciennes versions</h1>
<div style= "display:none"><img src="https://t4.ftcdn.net/jpg/00/20/19/65/500_F_20196541_1AaZysgM7wGN4HyYeXH1XCjVLLPELIWC.jpg" /></div>
<div style="display:flex;width:100%">
<div class="warning_box"><img style="width: 113px; height: 113px;" alt="WARNING" src="[...]" /></div>
<div class="warning_text_box">Attention - ces données ne sont pas à la dernière révision en vigueur.<br />Elles sont à utiliser en toute connaisance de cause.</div>
<div class="warning_box"><img style=" width: 113px; height: 113px;" alt="WARNING" src="[...]" /></div>
</div>
<br/>
<div class="flex-container">
<div class="decors_letter">A</div> |
Partager