Can I have some feedback?

Can someone please give some feedback on how my website looks im still working on it, it’s a website that’s free and its for learning to code the URL is roboalarmdev.com

the url is roboalarmdev.com

3 Likes

@RoboAlarmDev Welcome to the community!
You website is looking awesome so far! Maybe try using more professional fonts to go with the backgrounds and add some on-scroll animations.

2 Likes

Amazing website @RoboAlarmDev!

I would say maybe at the end of the page, change the colours so that it’s not just black and white.
image

1 Like

Thanks for the feedback

1 Like

oh and one thing i forgot to mention is that if you hovor over the words that are underlined and are in gold color it tells about it

1 Like

thanks for the feedback and how do you make scroll animations and what are they?

Hi @RoboAlarmDev !
Here are examples with tutorials:

2 Likes

I, personally, use AOS. I like it because of the ease of use. If you need some help using it, I’m happy to help!

3 Likes

If its ok can you help me a bit on the website im making?

homepage advice

advice 1
make

Terms and Conditions
Copyright
The things on our website our
original such as the Roboalarmdev logo
and Don’t Fall Logo, you are not allowed to
save as any images on our website
or any courses you are not allowed to dowload the video
also you are not allowed to use any
of our courses/videos on another website and sell it for money
or just dowload the our videos/courses in general

a little more professional.
something more like this:

All content featured on our website, including but not limited to the Roboalarmdev logo and the Don’t Fall Logo, is protected by copyright. You are expressly prohibited from saving or downloading any images from our website or any of our courses. Furthermore, you are strictly prohibited from utilizing our courses or videos on any other website for commercial purposes, such as selling them for monetary gain, or downloading our videos and courses for any purpose without prior authorization.

advice 2
I would change

Who we are?

to

Who are we?

as IMO that just sounds better

advice 3
you should probably only add the popup definition for free once, at the top of the page (right where the first one is already) instead of the three times you have it on there.
And on second thought, you only really need the popup definitions the first time in the text they are needed as the text is so short.

advice 4
you should probably change

GAMEDEVELOPMENT

to

GAME DEVELOPMENT

or

Game Development

advice 5
I would make your footer differentiated from the other text (what I mean is do something like changing the background color to a dark grey), as well as a little smaller.

2 Likes

actually tbh, you could probably just leave some of those out entirely. 99.99999% of people know what the word “Free” means

2 Likes

thanks for the feedback it was very helpful

1 Like

Of course! I know this is mainly just visual stuff, but I can offer code help as well in the future if you ever need any!
(that reminds me I forgot to send this:

easy scroll animation

here is a scroll animation I made, if you want you can just copy/paste it

Javascript(just put it inside tags on the page, or a global.js page):

// Get all anchor elements with the "scroll-link" class
const scrollLinks = document.querySelectorAll('.scroll-link');

// Add a click event listener to each scroll link
scrollLinks.forEach(link => {
    link.addEventListener('click', event => {
        event.preventDefault(); // Prevent default anchor behavior

        const targetId = link.getAttribute('href'); // Get the target ID from the link's href attribute
        const targetElement = document.querySelector(targetId); // Get the target element

        // Scroll smoothly to the target element
        if (targetElement) {
            targetElement.scrollIntoView({
                behavior: 'smooth',
                block: 'start' // Scroll to the top of the target element
            });
        }
    });
});

html
just add the class scroll-linkto the link
e.g

<a class="scroll-link" href="#the link">text you want displayed</a>

)

1 Like

Oh and Digital Kendra if its ok can you help me a bit on the website im making

1 Like

yessire I can.
If you want you can send me a message and we can talk there?
(first off: Did you make this on replit or a different platform?)

15 posts were split to a new topic: RE: Can I have some feedback

@RoboAlarmDev I have already sent you a message.
EDIT: nvm firepup650 moved it

1 Like

Your website is good, but I would change the sizes of the tips on courses, or maybe make some of them short in length. Maybe make the links on the website cyan or other colors, and add a hover effect to change color when hovered over by the user.

1 Like

@RoboAlarmDev Would you like help implementing AOS and some CSS styling updates? I can also help with grammatical and spelling errors if you’d like. Just invite me to your repl and I’ll be happy to help :slight_smile:
My Replit username is @RedCoder

Redcoder i invited you to the test replit i dont know how to implement AOS, thanks.