File size: 690 Bytes
37b358c |
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 |
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Последнее изображение</title>
<style>
body {
font-family: sans-serif;
text-align: center;
margin-top: 50px;
background-color: #f0f0f0;
}
img {
max-width: 90%;
height: auto;
border: 2px solid #333;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
</style>
</head>
<body>
<h1>Последнее загруженное изображение</h1>
<div>
<img src="/last_image" alt="Последнее изображение">
</div>
</body>
</html>
|