Spaces:
Runtime error
Runtime error
Commit
·
d7ad40d
1
Parent(s):
a997f81
Upload story.html
Browse files- story.html +37 -0
story.html
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html>
|
2 |
+
<head>
|
3 |
+
<style>
|
4 |
+
.container {
|
5 |
+
background-image: url(C:\Users\44754\OneDrive\vibrant_night_img2.jpg);
|
6 |
+
background-size: cover;
|
7 |
+
height: 100vh;
|
8 |
+
text-align: center;
|
9 |
+
color: dark slate-blue;
|
10 |
+
}
|
11 |
+
.title {
|
12 |
+
font-size: 36px;
|
13 |
+
padding-top: 50px;
|
14 |
+
}
|
15 |
+
.subtitle {
|
16 |
+
font-size: 24px;
|
17 |
+
padding-top: 20px;
|
18 |
+
}
|
19 |
+
.story-box {
|
20 |
+
background-color: baby-blue;
|
21 |
+
border: 2px solid dark-slate-blue;
|
22 |
+
padding: 20px;
|
23 |
+
margin: 50px auto;
|
24 |
+
width: 80%;
|
25 |
+
}
|
26 |
+
</style>
|
27 |
+
</head>
|
28 |
+
<body>
|
29 |
+
<div class="container">
|
30 |
+
<h1 class="title">Stu-Studios</h1>
|
31 |
+
<h2 class="subtitle">Clowning</h2>
|
32 |
+
<div class="story-box">
|
33 |
+
{{ story }}
|
34 |
+
</div>
|
35 |
+
</div>
|
36 |
+
</body>
|
37 |
+
</html>
|