dont worry i got u
code the website.
there are like, a million tutorials for HTML (what the structure of a website is). it’s super easy. this one is detailed. https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Getting_started
you can use the one on Neocities, it’s in a comic and is really cute. https://neocities.org/tutorial/html/1
you could also use a wysiwyg editor if you want which is easier because no code. i don’t like them however. (no example.)
but if you want to skip all that here’s some example code:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>my amazing website</title>
<style>
body {
background-color: #ffe6f0; /* background color */
color: #3c3f5a; /* text color */
}
</style>
</head>
<body>
<p> hi guys this is my website </p>
<br />
<a href="wasteof.money/users/skylar">wasteof</a>
</body>
</html>
it’s essential that while coding you have some vibes. may i recommend Radiohead?
upload to Neocities/Github pages/whatever host you want!
every host is different so no example.
you’ll put your main page in a file called index.html
profit >:)
more like- show it off actually. actually profiting from a website is hard.