So I completed the first project of responsive web design course,
I am looking for your feedback generally,
for the project:
So I completed the first project of responsive web design course,
I am looking for your feedback generally,
for the project:
Hey, overall nice job with this. Just a few issues to point out:
<body>
element doesn’t need a width of 100% set on it as it will take up all the width on the page by default.<br>
to create breaks between dates and text in the list. Block level elements always have have hard return after them, so you can just turn date <span>
into a block element with CSS.<h2>
).<h3>
under the <h1>
is probably not a heading and should just be a <p>
. Or you could combine it in the <h1>
and wrap it in a <span>
so you can style it.<blockquote>
instead of a <p>
.id
of “main” on the <body>
you should wrap all of the content in a <main>
.Also, you don’t want to include the DOCTYPE, , and in the codepen HTML editor. Codepen puts all that stuff in there for you. It looks like you also have HTML preprocessing set to Markdown. You should probably change that back to None since you are writing HTML.
thank you for your effort explaining my mistakes. I will consider them and try to fix them respectfully.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.