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:
14
Exp Points:
1,988 / 2,180
Exp Rank:
32,802
Vote Power:
5.59 votes
Audio Scouts
10+
Rank:
Police Captain
Global Rank:
4,079
Blams:
243
Saves:
1,989
B/P Bonus:
16%
Whistle:
Bronze
Trophies:
4
Medals:
167
Supporter:
6m 11d

Website update

Posted by Anamonator - 3 weeks ago


Well I got the hang of css and I was able to put this together on my website


iu_1374134_23651169.png

and no the counter is not accurate for some reason I’m gonna embed a new one later.


If you want to see it for yourself (even though there is barely anything there) go to www.anamonator.com


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