-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
frontend task #4 @theo4u #13
Conversation
@clux2605 you did the SVG logo yourself? |
frontend/category.html
Outdated
<body> | ||
<div id="logo"> | ||
<a href="index.html"> | ||
<img src="res/devcenter-logo.svg"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not found, no res folder instead assets/img/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, my bad, forgot to change the dir when i changed the folder structure.
frontend/explainer.html
Outdated
<h4>We then use that to create a track that might be the most engaging way for you to get into tech.</h4> | ||
</div> | ||
<div id="button"> | ||
<button type="button" href="category.html">Begin</button> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be a link, <a href="category.html">Begin</a>
frontend/index.html
Outdated
<h3>We understand that coding can be a bit confusing at the beginning and we are here to help you get started.</h3> | ||
</div> | ||
<div id="button"> | ||
<button type="button" href="explainer.html">How?</button> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above, use link
frontend/index.html
Outdated
<body> | ||
<div id="logo"> | ||
<a href="./"> | ||
<img src="res/devcenter-logo.svg"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resource not found
frontend/question.html
Outdated
<hr> | ||
|
||
<div> | ||
<input type="checkbox" name="question-1-answers" id="question-1-answers-A" value="A" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the checkbox should be radio button as you can only pick one answer per question
check the comments placed on changed files, and no result page #4 last image |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Check your src to devcenter svg
- No Result page
- Use link instead of button(and buttons don't use href)
frontend/index.html
Outdated
<div id="content"> | ||
<h2>Coding101 aims to help people who are interested in coding get an head start.</h2> | ||
<div id="logo"> | ||
<a href="./"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for thr link here, anyway href
should be # instead
frontend/index.html
Outdated
<h3>We understand that coding can be a bit confusing at the beginning and we are here to help you get started.</h3> | ||
</div> | ||
<div id="link"> | ||
<a href="explainer.html"></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no link Text
frontend/explainer.html
Outdated
<h4>We then use that to create a track that might be the most engaging way for you to get into tech.</h4> | ||
</div> | ||
<div id="link"> | ||
<a href="category.html"></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no link text
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corrected
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well done 👏
Corrections to the folder structure