00:00
00:00
Anamonator
Ocean Water Tastes Good

Austin @Anamonator

Age 14, Male

Cartoonist/Animator

8th Grade

USA

Joined on 9/11/24

Level:
15
Exp Points:
2,188 / 2,500
Exp Rank:
29,614
Vote Power:
5.66 votes
Audio Scouts
10+
Rank:
Police Captain
Global Rank:
3,771
Blams:
267
Saves:
2,128
B/P Bonus:
16%
Whistle:
Bronze
Trophies:
5
Medals:
170
Supporter:
7m 4d

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