Spaces:
Sleeping
Sleeping
DmitrMakeev
commited on
Update se_mes_f.html
Browse files- se_mes_f.html +27 -16
se_mes_f.html
CHANGED
@@ -5,22 +5,33 @@
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Send Messages with Image</title>
|
7 |
<style>
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
</style>
|
25 |
</head>
|
26 |
<body>
|
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Send Messages with Image</title>
|
7 |
<style>
|
8 |
+
body {
|
9 |
+
margin: 0;
|
10 |
+
padding: 0;
|
11 |
+
font-family: Arial, sans-serif;
|
12 |
+
}
|
13 |
+
|
14 |
+
.container {
|
15 |
+
display: flex;
|
16 |
+
align-items: center;
|
17 |
+
justify-content: space-between;
|
18 |
+
padding: 20px;
|
19 |
+
}
|
20 |
+
|
21 |
+
.text-block {
|
22 |
+
flex: 1;
|
23 |
+
padding: 20px;
|
24 |
+
}
|
25 |
+
|
26 |
+
.image-block {
|
27 |
+
flex: 1;
|
28 |
+
text-align: center;
|
29 |
+
}
|
30 |
+
|
31 |
+
.image-block img {
|
32 |
+
max-width: 100%;
|
33 |
+
height: auto;
|
34 |
+
}
|
35 |
</style>
|
36 |
</head>
|
37 |
<body>
|