-
Notifications
You must be signed in to change notification settings - Fork 17
Andre Moon #2
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
base: main
Are you sure you want to change the base?
Andre Moon #2
Conversation
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.
Make sure to have your html files structured correctly 👌
</body> | ||
<footer class="F1"> | ||
<a target="_blank" href="https://github.com/MoonMan120"> | ||
<img class="git" src="github-mark-white.png" alt="white github link" /> | ||
</a> | ||
<a target="_blank" href="https://www.linkedin.com/in/andre-moon-148813185/"> | ||
<img class="linked" src="InBug-White.png" alt="linkedin logo" /> | ||
</a> | ||
</body> | ||
</footer> |
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.
- Looks like you added a extra closing body tag
- And you have the closing footer outside the body. You want to keep all the content inside the body
<img class="linked" src="InBug-White.png" alt="linkedin logo" /> | ||
</a> | ||
</footer> | ||
</html> |
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.
Make sure the html is the very last element in the file
<footer class="F1"> | ||
<a target="_blank" href="https://github.com/MoonMan120"> | ||
<img class="git" src="github-mark-white.png" alt="white github link" /> | ||
</a> | ||
<a target="_blank" href="https://www.linkedin.com/in/andre-moon-148813185/"> | ||
<img class="linked" src="InBug-White.png" alt="linkedin logo" /> | ||
</a> | ||
</footer> | ||
</html> | ||
|
||
<section id="forms"> | ||
<form action="/url" method="GET"> | ||
<p>Enter name below:</p> | ||
<input type="text"> | ||
<p>Email:</p> | ||
<input type="text"> <br> | ||
<button>submit</button> | ||
</form> | ||
</section> |
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 description provided.