Update index.html
Browse files- index.html +21 -1
index.html
CHANGED
@@ -4,7 +4,27 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Simple Blog Website</title>
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
</head>
|
9 |
<body>
|
10 |
<header>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Simple Blog Website</title>
|
7 |
+
|
8 |
+
<style>
|
9 |
+
.resp{
|
10 |
+
display: flex;
|
11 |
+
flex-wrap: wrap;
|
12 |
+
flex-direction: column;
|
13 |
+
text-wrap: pretty;
|
14 |
+
width: fit-content;
|
15 |
+
}
|
16 |
+
.div_box{
|
17 |
+
border-color: white;
|
18 |
+
border-width: medium;
|
19 |
+
display: flex;
|
20 |
+
flex-wrap: wrap;
|
21 |
+
flex-direction: column;
|
22 |
+
/* contain: content; */
|
23 |
+
overflow-wrap: anywhere;
|
24 |
+
|
25 |
+
</style>
|
26 |
+
|
27 |
+
|
28 |
</head>
|
29 |
<body>
|
30 |
<header>
|