Unbounded

?
components css layout

Add Element

Edit CSS Variable

A css variable is a great way to keep things like colors and other styles consistant. It allows you to define something like a color '#0a85ff' to a name like '--primary-color'. You can then user 'var(--primary-color)' to color an element, and then you can change that value here.

This allows you to change the color for your entire website easily without having to change it for every element.

Open

You can open a file or paste some html you wish to edit below

Edit a Class

Classes are a way to make sure your design is consistant. It allows you update the style of all elements with the same class with one change, instead of changing each element. This is useful for things like buttons that you want to be consistant on your page.

WARNING: styles applied to individual elements take precedence over styles in classes. So if you want have a class style show up on an element, make sure the corresponding style is blank on the element.

hover style

Edit an Animation

Animations are a great way to make your page stand out and feel more interactive. To create one you specify the style of the element at each keyframe below (you can skip keyframes). You can then apply this to an elements 'animation'.

keyframe 0%

New Page

Feel free to use one of the templates below or upload your own (html files).

Upload
Blank Page

A basic blank page for starting fresh

Splash Page

An splash image based landing page to show off something on your site.

Generic Business

A generic business page with a nav bar.

Portfolio

Basic portfolio page with a few cards for showing off your stuff!

Food Blog

Basic food blog landing page for showing your recipes off

Help

Hi! To get started, click on a something in the view window to see what styles are applied to that element.

It may help you to look at some of our templates under 'new page'. (Often the best way to start is by using a template similar to your idea)

We don't have a dedicated staff to help you unfortunately, but here are some resources for when you're stuck:

How-Tos

Here's some how-tos you might find useful.

Center an Element

There are multiple ways to do this in css, but most people do one of these 3

Add an Image

Change Text Color

Remove a Background Color or other Color

Add Something to an Element you can't Select

Make a Scroll Section

Make a Second Page

Most websites have multiple pages, and this is something you may want to do. Here are the steps to do that:

Publish a Website

Publishing a website can be kind of complicated. We may in the future provide hosting options, but currently we do not. If you want your website to be accessable online, here are some general steps:

For many websites I create, I actually use github pages which is free. Here's some general steps for that:

Save user data

Unfortunately saving user data pretty much always involves having a server where that data is stored. Steps for this might include:

Alternativly you can use a google form to collect data which will be saved to your drive. This is free and easy to setup.

We've toyed with the idea of making a no code solution to this. Though no code solutions are often finicky and limited in what they can do.

If your business could use this and you have the money, hiring a developer is probably what you'll want to do.

If your comfortable with doing some coding yourself, I'd check out FastAPI in Python for doing this. Chat GPT can help get you started pretty quickly.

Make Transactions

Transactions are also pretty complicated to set up. They involve connecting to a payment provider and handling user orders. If you want to do this you'll probably need a developer.

We've thought of making a no code solution for this, which we may do in the future.