Bryan Liโข 3,530
@Zy8712
Posted
Congrats on completing your first challenge!
Some things that I noticed when looking through your code:
- you are missing closing tags for your
<html>
tag and<body>
tag - you should include a
<main>
tag around your main page content, this is for accessbility purposes - with your header tag you should start with
<h1>
not<h3>
Header tags are meant to be used in descending order, so you should skip any. All headers have a default font size which can be changed in css using thefont-size
property
Hope you find this feedback useful ๐
0