Spaces:
Build error
Build error
Create index.html
Browse files- index.html +89 -0
index.html
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
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 |
+
.bhead{
|
10 |
+
margin: 0px 0px 30px 0px!important;
|
11 |
+
padding: 0px 10px 20px 10px;
|
12 |
+
border-color: white;
|
13 |
+
border-width: medium;
|
14 |
+
border-radius: 10px;
|
15 |
+
background: #060e1c;
|
16 |
+
display: flex;
|
17 |
+
flex-wrap: wrap;
|
18 |
+
flex-direction: column;
|
19 |
+
text-wrap: pretty;
|
20 |
+
}
|
21 |
+
.bpost{
|
22 |
+
margin:10px 10px 10px 10px!important;
|
23 |
+
padding:10px;
|
24 |
+
border-color: white;
|
25 |
+
border-width: medium;
|
26 |
+
border-radius: 10px;
|
27 |
+
background:#15243f;
|
28 |
+
display: flex;
|
29 |
+
flex-wrap: wrap;
|
30 |
+
flex-direction: column;
|
31 |
+
text-wrap: pretty;
|
32 |
+
width: fit-content;
|
33 |
+
}
|
34 |
+
.resp1{
|
35 |
+
margin:10px 10px 10px 30px!important;
|
36 |
+
background:#022563;
|
37 |
+
padding:10px;
|
38 |
+
border-color: white;
|
39 |
+
border-width: medium;
|
40 |
+
display: flex;
|
41 |
+
flex-wrap: wrap;
|
42 |
+
flex-direction: column;
|
43 |
+
text-wrap: pretty;
|
44 |
+
width: fit-content;
|
45 |
+
}
|
46 |
+
.resp2{
|
47 |
+
margin:10px 10px 10px 50px!important;
|
48 |
+
background:#003593;
|
49 |
+
padding:10px;
|
50 |
+
border-color: white;
|
51 |
+
border-width: medium;
|
52 |
+
display: flex;
|
53 |
+
flex-wrap: wrap;
|
54 |
+
flex-direction: column;
|
55 |
+
text-wrap: pretty;
|
56 |
+
width: fit-content;
|
57 |
+
}
|
58 |
+
|
59 |
+
.div_box{
|
60 |
+
display: flex;
|
61 |
+
flex-wrap: wrap;
|
62 |
+
flex-direction: column;
|
63 |
+
/* contain: content; */
|
64 |
+
overflow-wrap: anywhere;
|
65 |
+
}
|
66 |
+
</style>
|
67 |
+
|
68 |
+
|
69 |
+
</head>
|
70 |
+
<body>
|
71 |
+
<header>
|
72 |
+
</header>
|
73 |
+
<main>
|
74 |
+
<section class="posts">
|
75 |
+
<article class="post">
|
76 |
+
<div>$body</div>
|
77 |
+
|
78 |
+
</article>
|
79 |
+
<!-- More posts here -->
|
80 |
+
</section>
|
81 |
+
<aside class="sidebar">
|
82 |
+
<!-- Sidebar content like categories, recent posts, etc.-->
|
83 |
+
</aside>
|
84 |
+
</main>
|
85 |
+
<footer>
|
86 |
+
<p>© Copyright Your Name - Simple Blog Website</p>
|
87 |
+
</footer>
|
88 |
+
</body>
|
89 |
+
</html>
|