22 lines
272 B
HTML
22 lines
272 B
HTML
<html>
|
|
<title>site statique pour docker</title>
|
|
<style>
|
|
body {
|
|
color: #f0f0f0;
|
|
background: #1b1d27;
|
|
}
|
|
img{
|
|
max-width: 100vw;
|
|
}
|
|
h1{
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
<body>
|
|
<h1>
|
|
|
|
coucou l'index de static
|
|
</h1>
|
|
<img src="csc.png">
|
|
</body>
|
|
</html>
|