2nd day on Free Code Camp - Tribute page feedback

I know this looks pretty rudimental, but it is only my second day of coding ever!

Loving it!
The playing around and experimenting is so addictive.

Any feedback would be great :slight_smile:

27 yr old teacher looking to find a new career in computing :slight_smile: At the start of my very long journey!

Thanks,
Jamie

Hi Jamie,

The first thing I see in your design is the color combination. Although you donโ€™t have to be a graphic designer to be a web developer, some tools to help you wouldnโ€™t hurt either. You have Color, by Adobe, which can give you a palette of colors depending on given color. I think itโ€™s very interesting resource to have in your bookmarks.

Second, the list bullets. You can remove them by setting the property list-style-type to none.

li {
  list-style-type: none;
}

That being said, so far so good to practice new skill. Keep it up! :slight_smile:

Happy coding!

PS: Keep your code clean. I mean, keep a pleasant visible structure and write your code where you should (CSS in CSS tab/folder/file, the same with JS, etc). This way it will be helpful for you (and others) to review your code later.