Spaces:
Sleeping
Sleeping
Create show_image.html
Browse files- show_image.html +27 -0
show_image.html
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="ru">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>Последнее изображение</title>
|
| 6 |
+
<style>
|
| 7 |
+
body {
|
| 8 |
+
font-family: sans-serif;
|
| 9 |
+
text-align: center;
|
| 10 |
+
margin-top: 50px;
|
| 11 |
+
background-color: #f0f0f0;
|
| 12 |
+
}
|
| 13 |
+
img {
|
| 14 |
+
max-width: 90%;
|
| 15 |
+
height: auto;
|
| 16 |
+
border: 2px solid #333;
|
| 17 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.3);
|
| 18 |
+
}
|
| 19 |
+
</style>
|
| 20 |
+
</head>
|
| 21 |
+
<body>
|
| 22 |
+
<h1>Последнее загруженное изображение</h1>
|
| 23 |
+
<div>
|
| 24 |
+
<img src="/last_image" alt="Последнее изображение">
|
| 25 |
+
</div>
|
| 26 |
+
</body>
|
| 27 |
+
</html>
|