diff options
Diffstat (limited to 'tulpa')
-rw-r--r-- | tulpa/index.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tulpa/index.php b/tulpa/index.php new file mode 100644 index 0000000..08c4a01 --- /dev/null +++ b/tulpa/index.php @@ -0,0 +1,27 @@ +<?php $_TITLE = "Minteck and tulpamancy";
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; ?>
+
+<div class="container" style="min-height: 100vh;">
+ <br>
+ <br>
+ <br>
+ <br>
+ <br>
+
+ <h2 style="text-align:center;">Welcome to the darkest of dark places!</h2>
+ <p style="text-align: center;">This is a page that tracks my progress on <a
+ href="https://www.tulpa.info/what-is-a-tulpa/">creating a tulpa</a>. This is mostly for me but you can
+ feel free to visit it too ^^</p>
+
+ <br>
+
+ <div id="bar-outer" class="container" style="width:100%;height:32px;">
+ <span id="bar-inner"
+ style="display:inline-block;background:#252525;height:32px;width:100%;border-radius:10px;">
+ <span id="bar-progress"
+ style="display:inline-block;background:#858585;height:32px;width:50%;border-top-left-radius:10px;border-bottom-left-radius:10px;"></span>
+ </span>
+ </div>
+</div>
+
+<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?>
|