-
-
Notifications
You must be signed in to change notification settings - Fork 257
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
Changed the Twitter logo #1022
base: main
Are you sure you want to change the base?
Changed the Twitter logo #1022
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -1190,12 +1190,12 @@ <h3>Support</h3> | |||||||||||||||||
<h3>Connect With Us</h3> | ||||||||||||||||||
<div class="social-icons"> | ||||||||||||||||||
<a href="https://www.facebook.com/"><i class="fab fa-facebook-f"></i></a> | ||||||||||||||||||
<a href="https://x.com/?lang=en"><i class="fab fa-twitter"></i></a> | ||||||||||||||||||
<a href="https://x.com/?lang=en"><img height="15px" width="20px" src="logo/logo.svg" alt=""> | ||||||||||||||||||
<a href="https://www.linkedin.com/"><i class="fab fa-linkedin-in"></i></a> | ||||||||||||||||||
<a href="https://www.instagram.com/"><i class="fab fa-instagram"></i></a> | ||||||||||||||||||
</div> | ||||||||||||||||||
</div> | ||||||||||||||||||
|
||||||||||||||||||
</div> | ||||||||||||||||||
<div class="footer-bottom"> | ||||||||||||||||||
|
||||||||||||||||||
|
@@ -1230,7 +1230,7 @@ <h3>Support</h3> | |||||||||||||||||
<h3>Connect With Us</h3> | ||||||||||||||||||
<div class="social-icons"> | ||||||||||||||||||
<a href="#"><i class="fab fa-facebook-f"></i></a> | ||||||||||||||||||
<a href="#"><i class="fab fa-twitter"></i></a> | ||||||||||||||||||
<a href="#"><img height="15px" width="20px" src="logo/logo.svg" alt=""> | ||||||||||||||||||
<a href="#"><i class="fab fa-linkedin-in"></i></a> | ||||||||||||||||||
<a href="#"><i class="fab fa-instagram"></i></a> | ||||||||||||||||||
Comment on lines
+1233
to
1235
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing closing tags in footer social icons Similar to earlier, at line 1233, the Correct the tags as follows: <a href="#">
- <img height="15px" width="20px" src="logo/logo.svg" alt="">
+ <img height="15px" width="20px" src="logo/logo.svg" alt="" />
</a> Repeat this fix for all social icon links to ensure proper HTML structure.
|
||||||||||||||||||
</div> | ||||||||||||||||||
|
@@ -1420,7 +1420,7 @@ <h3>Support</h3> | |||||||||||||||||
<h3>Connect With Us</h3> | ||||||||||||||||||
<div class="social-icons"> | ||||||||||||||||||
<a href="#"><i class="fab fa-facebook-f"></i></a> | ||||||||||||||||||
<a href="#"><i class="fab fa-x-twitter"></i></a> | ||||||||||||||||||
<a href="#"><img height="15px" width="20px" src="logo/logo.svg" alt=""> | ||||||||||||||||||
<a href="#"><i class="fab fa-linkedin-in"></i></a> | ||||||||||||||||||
<a href="#"><i class="fab fa-instagram"></i></a> | ||||||||||||||||||
Comment on lines
+1423
to
1425
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unclosed tags affecting footer layout At line 1423, there are unclosed Apply this correction: <a href="#">
- <img height="15px" width="20px" src="logo/logo.svg" alt="">
+ <img height="15px" width="20px" src="logo/logo.svg" alt="" />
</a> Ensure all tags are properly closed to maintain the integrity of the HTML document. 📝 Committable suggestion
Suggested change
|
||||||||||||||||||
</div> | ||||||||||||||||||
|
@@ -1531,7 +1531,7 @@ <h3>Support</h3> | |||||||||||||||||
<h3>Connect With Us</h3> | ||||||||||||||||||
<div class="social-icons"> | ||||||||||||||||||
<a href="#"><i class="fab fa-facebook-f"></i></a> | ||||||||||||||||||
<a href="#"><i class="fab fa-twitter"></i></a> | ||||||||||||||||||
<a href="#"><img height="15px" width="20px" src="logo/logo.svg" alt=""> | ||||||||||||||||||
<a href="#"><i class="fab fa-linkedin-in"></i></a> | ||||||||||||||||||
<a href="#"><i class="fab fa-instagram"></i></a> | ||||||||||||||||||
<a href="https://github.com/GarimaSingh0109/Resum-Resume" target="_blank"><i class="fab fa-github"></i></a> | ||||||||||||||||||
Comment on lines
+1534
to
1537
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Incorrect social icon implementation in footer At line 1534, the Fix the code as shown: <a href="#">
- <img height="15px" width="20px" src="logo/logo.svg" alt="">
+ <img height="15px" width="20px" src="logo/logo.svg" alt="" />
</a> Verify all social media links in the footer are correctly implemented.
|
||||||||||||||||||
|
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.
Improperly nested and unclosed
<img>
and<a>
tags in social iconsAt line 1193, the
<img>
tag inside the<a>
tag is not properly closed, and the<a>
tag lacks a closing tag. This can break the HTML parsing and affect how browsers display the content.Apply the following fix:
Ensure that all
<img>
tags are self-closed and every<a>
tag has a corresponding closing</a>
tag.