DmitrMakeev commited on
Commit
5b0cefa
·
verified ·
1 Parent(s): 228a361

Create show_image.html

Browse files
Files changed (1) hide show
  1. show_image.html +4 -7
show_image.html CHANGED
@@ -1,3 +1,4 @@
 
1
  <!DOCTYPE html>
2
  <html lang="ru">
3
  <head>
@@ -5,23 +6,19 @@
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>
 
1
+ <!-- show_image.html -->
2
  <!DOCTYPE html>
3
  <html lang="ru">
4
  <head>
 
6
  <title>Последнее изображение</title>
7
  <style>
8
  body {
9
+ font-family: Arial, sans-serif;
10
  text-align: center;
11
+ padding: 30px;
 
12
  }
13
  img {
14
  max-width: 90%;
15
  height: auto;
16
  border: 2px solid #333;
 
17
  }
18
  </style>
19
  </head>
20
  <body>
21
  <h1>Последнее загруженное изображение</h1>
22
+ <img src="/last_image" alt="Последнее изображение">
 
 
23
  </body>
24
  </html>