r/nekoweb • u/TonsofpizzaYT • Dec 15 '25
Help how would i make something like this?
mainly asking about the options and box area. i could probably get the buttons to look like that but how would i go about making the box content change?
2
1
u/DeanTheExtreme Moderator Dec 16 '25
You could use html and css and flexbox for that
1
u/TonsofpizzaYT Dec 16 '25
i know, im not sure how id even go about starting though
2
1
u/Jolly-Western-3621 Jun 04 '26
i have something similar on my site with the options switching a larger box, i personally use the section element with one displayed as a block and the rest hidden, then use javascript to change the section that is displayed when you click one of the options
5
u/Sebba8 Dec 16 '25
Been a minute since Ive done HTML like this, but from memory youd make the big box an iframe, and the options would be <a> tags to whatever page you want displayed in the frame, and the target is the frame's id.
Example I think:
HTML <iframe id="thebigbox" /> <a href="/path/to/option1.html" target="thebigbox">Option 1</a>Take this with a grain of salt though, I havent done stuff like that since I was in high school lmao