-
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
Added footer html & both css #26
base: main
Are you sure you want to change the base?
Conversation
itsashishbharti
commented
Jan 23, 2024
blogs/01/index.html
Outdated
@@ -64,5 +71,43 @@ <h4>Subscribe to our Newsletter</h4> | |||
</div> | |||
</div> | |||
</section> | |||
<section id="footersec"> |
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.
use full-name in id , it should be id=footer
or id=footer-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.
Use footer element
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.
done
blogs/01/index.html
Outdated
<li><a href=" ">About Us</a></li> | ||
<li><a href=" ">Advertise</a></li> | ||
<li><a href=" ">Careers</a></li> | ||
<li><a href=" ">Subscribes</a></li> |
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.
use #about, #careers in all href tag.
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.
done
blogs/01/index.html
Outdated
<li><a href=" ">Travel</a></li> | ||
<li><a href=" ">Lifestyle</a></li> | ||
<li><a href=" ">Sports</a></li> | ||
<li><a href=" ">Nature</a></li> |
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.
use #travel, #nature in all href tag.
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.
done
blogs/01/index.html
Outdated
<a href=""><img src="img/facebook.png"/></a> | ||
<a href=""><img src="img/twitter.png"/></a> | ||
<a href=""><img src="img/insta.png"/></a> | ||
<a href=""><img src="img/wif.png"/></a> | ||
<a href=""><img src="img/email.png"/></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.
use #facbook, #twitter in all href tag.
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.
done
h3 , p { | ||
font-size:16px; | ||
} |
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.
use class name to change the font-size , other wise it will change the size of all headings and paragraph in every section.
resolve the conflicts @itsashishbharti |