From 8ce585747e7f41e57fbe24a178e1e6b1f25ead56 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Fri, 5 Jul 2024 14:15:45 +0400 Subject: [PATCH] initial commit: 1/3 of demo page is done --- index.html | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..81874de --- /dev/null +++ b/index.html @@ -0,0 +1,129 @@ + + + + + + Themes Demo + + + + + + + +
+

Hello World!

+
+
+

Title: hgroup > h1

+

Description: hgroup > *:nth-child(2)

+
+

+ Lorem ipsum dolor sit amet consectetur, adipisicing elit. + Enim vel ab, quos optio accusantium non! + Pariatur a, obcaecati, veniam natus magnam nihil, + ad unde fuga expedita cum nesciunt error quas. +

+

+ SysRq + B = reboot +

+ + + + + + + + + + + + +
Album nameReleasedTrack count
Hybrid TheoryOct 24, 200012
MeteoraMar 25, 200313
Minutes to MidnightMay 14, 200712
A Thousand SunsSep 13, 201015
+
+ Elephant at sunset +
Caption
+
+
+

+ On each landing, opposite the lift-shaft, the poster with the enormous face gazed from the wall. + It was one of those pictures which are so contrived that the eyes follow you about when you move. + 'BIG BROTHER IS WATCHING YOU' the caption beneath it ran. +

+
— George Orwell, Nineteen Eighty-Four
+
+

+

package main
+
+import "github.com/gofiber/fiber/v3"
+
+func main() {
+  app := fiber.New()
+
+  app.Get("/", func(c fiber.Ctx) error {
+    return c.SendString("Hello Fiber")
+  })
+
+  app.Listen("127.0.0.1:8080", fiber.ListenConfig{
+    EnablePrefork: true,
+  })
+}
+

+
+
+
+ + +
+
+ + +
+
+
+ +