I considered different color patterns for the site's theme, including:
After consideration, the Medieval Theme has been chosen, since it suits the whole worldbuilding thing.
-
Main Title: W🌏rld Builder
-
A "Contact Us" button that redirects to the Contact Us page.
-
Introduction Section
- Main Heading: Start Building Your World Today
- An image created using Krita.
-
Tool Sections (3 main tools):
Each tool section features:- A descriptive heading.
- A paragraph description of the tool's purpose.
- A "Get Started" button linking to the respective tool.
- A preview image (e.g., the Character Card Maker preview was contributed by a friend).
The tools are:
- Character Card Maker
- Timeline Maker
- Name Generator (it doesn't work, download the SQLite database in the repo and configure your PHP to make it work).
-
Reviews Section
- Section Title: What People Are Saying
(A longer title adds emphasis.) - Includes three review cards:
- Two genuine reviews.
- An unfortunately fake one from Wes Anderson.
- Section Title: What People Are Saying
-
Copyright Notice
Clearly states ownership and copyright for the site. -
A link to Other Sites for related or additional resources.
To make the Name Generator work, you'll need to:
-
Download SQLite:
Download and install SQLite from sqlite.org. -
Install PHP SQLite Extension:
Ensure that the PHP SQLite extension is installed and enabled on your server. -
Configure Database Path:
In thenameGenerator.php
file, set the path to your SQLite database like so:<?php // Path to your SQLite database file $db_path = 'path_to_your_database.sqlite'; // Connect to SQLite database $db = new SQLite3($db_path); ?>
Thanks to Janelle Shane's DnD Characters GitHub Repository for inspiring character names used in this project.