Every member starts out by making a user page. This is where you keep the links to your Sunday Sites (all of which could also link back to your user page). If you are using Glitch for your user page, you can either access it on *yourusername*.glitch.me or on sundaysites.cafe/~*yourusername*.
Here is some code to make you started, but please make yourself at home and add as much stuff as you like! Want to make a dream journal, list your favorite fruits or go crazy with CSS? Go ahead!
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>~yourusername (same as the name of the glitch page)</title>
<style type="text/css">
/* Put your CSS here */
</style>
</head>
<body>
<h1>yourusername</h1>
<p>
Welcome to my user page for
<a href="https://sundaysites.cafe/">Sunday Sites</a>.
</p>
<h2>My Sunday Sites</h2>
<ul>
<li>
<a href="https://*your-first-sunday-site*.glitch.me">
https://*your-first-sunday-site*.glitch.me</a>
</li>
<li>
<a href="https://*your-second-sunday-site*.glitch.me">
https://*your-second-sunday-site*.glitch.me</a>
</li>
</ul>
</body>
</html>
Host your Sunday Sites wherever you want, but I recommend using Glitch, because it’s free, easy to use, has a built in HTML editor and it updates your site in real time. If you get stuck when making your site, you can get help from one of their community members.
Another good and free service is Netlify, and there are lots of other alternatives to choose from if you are curious or looking for something with a specific feature.
<!-- Put something like this somewhere on your site -->
<p>
This is a
<a href="https://sundaysites.cafe/">Sunday Site</a>
by
<a href="https://sundaysites.cafe/~*yourusername*">
yourusername</a>.
</p>
<!-- Or put this footer before the closing body tag and change
the styling to something that looks good on your site-->
<footer style="position: fixed; bottom: 0; width: 100%;
padding-bottom: 0.5em; font-size: 1vw;">
<p>
This is a
<a href="https://sundaysites.cafe/">Sunday Site</a>
made by
<a href="https://sundaysites.cafe/~*yourusername*">
yourusername</a>.
</p>
</footer>