Posts

Showing posts from 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...

HTML5 cheat codes Part.01

Image
www.shellows.blogger.com TABLE OF CONTANT 01.Document Summary Document information 02.Document Structure Text Formatting  01.Document summary document information    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. Documment Summary  Let us see how we can break the code up in different componen <html>... </html> This tag specifies that the webpage is written in HTML It appears at the very first and last line of the webpage It is mainly used to show that the page uses HTML5 - the latest version of the language. Also known as the root element this tag can be thought of as a parent tag for every other tag used in the page <head> ... </head> This tag is used to specify meta data about the webp...