Posts

Showing posts from March, 2021

HTML5 cheat codes part.02

Image
 www.shellows.blogspot.com Table of contant 03.Links and images 04.Lists forms input type of attributes For web developers, it is crucial to be proficient in HTML  And while HTML is not the most difficult to get accustomed to one can still manage  to forget all the nooks and crannies it has to offer.  A good solution, therefore, is to always have a cheat sheet at hand helping you in your most troubling moments. 03.links and images Let us see how we can break the code up in different componen LINKS <a href=""> ... </a> Anchor tag. Primarily used for including hyperlinks. <a href="mailto:"> ... </a>  Tag dedicated to sending emails. <a href="tel://###-###"> ... </a> Anchor tag for mentioning contact numbers. As the numbers are clickable, this can be particularly beneficial for mobile users. <a name="name"> ... </a> This tag can be used to quickly navigate to a different part of the webpage...