can anyone give me feedback on how to make this better? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

can anyone give me feedback on how to make this better?

I'm looking for better ways to make this please feel free to give me any advice on my code my css or just how to make this feel and look better for users. https://code.sololearn.com/WMaDHv6kfxMd/?ref=app

18th Jul 2023, 3:50 AM
Peter Reyna
Peter Reyna - avatar
10 Answers
0
I've made minor changes to your code that I believe have improved your page. I didn't change much, but I mainly changed the navigation bar. I hope it was to your liking. https://code.sololearn.com/Wm6FaY8COI5z/?ref=app https://code.sololearn.com/Wm6FaY8COI5z/?ref=app
19th Jul 2023, 6:14 AM
Sara
Sara - avatar
+ 3
Use more CSS to align contents
18th Jul 2023, 3:52 AM
A͢J
A͢J - avatar
+ 1
Nice!...How far have you reached in css?...using Flexbox to arrange your website(especially the nav section) will make it look better...also you can work on color scheme...Love the animation tho...
18th Jul 2023, 3:53 AM
$BANANA$
+ 1
In css, Id use #...while class use .
18th Jul 2023, 3:56 AM
$BANANA$
+ 1
Ohh okay
18th Jul 2023, 4:06 AM
Peter Reyna
Peter Reyna - avatar
0
What is the code for this?
18th Jul 2023, 3:52 AM
Peter Reyna
Peter Reyna - avatar
0
I'm very new to css and kind of know just the basics of it I don't really understand the difference between id="#" and class="#" in css
18th Jul 2023, 3:55 AM
Peter Reyna
Peter Reyna - avatar
0
What would be the code for an align my content in css?
18th Jul 2023, 4:06 AM
Peter Reyna
Peter Reyna - avatar
0
Update:I was able to find the code to align my text I'm hoping this was what you were referring too A͢J https://code.sololearn.com/WMaDHv6kfxMd/?ref=app
18th Jul 2023, 6:24 AM
Peter Reyna
Peter Reyna - avatar
0
Id and class selectors basically have the same goal. The biggest difference between them is that the id selector can only be used once during your HTML code, but the class selector can be used multiple times. The id selector uses the hash ("#") to be referenced in the CSS, and the class selector uses the dot (".") for the same thing.
19th Jul 2023, 6:18 AM
Sara
Sara - avatar