an example index.html for a web site
authorChris Koeritz <fred@gruntose.com>
Sun, 3 Oct 2021 20:53:28 +0000 (16:53 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 3 Oct 2021 20:53:28 +0000 (16:53 -0400)
this is almost the simplest possible html file.  it can be used for a really crappy main index.html if you're out of other ideas.

infobase/examples/web/simple-index.html [new file with mode: 0644]

diff --git a/infobase/examples/web/simple-index.html b/infobase/examples/web/simple-index.html
new file mode 100644 (file)
index 0000000..5d149d1
--- /dev/null
@@ -0,0 +1,13 @@
+<!doctype html>
+<html>
+  <head>
+    <title>Title goes right here!</title>
+  </head>
+  <body>
+    <p>
+Here's an example paragraph in this amazing web site, which demonstrates a super simple basic html file.
+Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.
+    </p>
+  </body>
+</html>
+