00:00
00:00
Anamonator
A man of something idk

Austin @Anamonator

Age 14, Male

Cartoonist/Animator

Almost in High School

USA

Joined on 9/11/24

Level:
15
Exp Points:
2,468 / 2,500
Exp Rank:
25,693
Vote Power:
5.74 votes
Audio Scouts
10+
Art Scouts
3
Rank:
Private
Global Rank:
3,567
Blams:
291
Saves:
2,259
B/P Bonus:
18%
Whistle:
Bronze
Trophies:
5
Medals:
195
Supporter:
7m 2d

Comments

What kind of website maker is this?

Neocities. I actually had to code this.

Nice domain, I don’t really have one rn. (I have a website tho)

the website seems okay, but i would reccomend using a <div> for the box instead of using the body, so you may have multiple of those boxes! :D

example:
<!doctype html>
\\ all your html
<body> (will be background basicially)
<div> (box is inside the body for ease of access)
(all your content for inside the box)
</div>
(you can add an extra div if you want)
</body>
</html>

also, seems that your box isnt centered correctly. replace your css body{} part with this (does exactly the same):
div {margin: auto; width: 70%; border-style: inset; border-radius: 15px; border: 3px solid white; padding: 20px;}
body {color:#333333;}

(well, idk what the border size should be pls dont blame me)

Thank you for your advice