HTML link tag: explained with attributes (href, target, rel) and CSS styling

HTML link title custo

How to create links in HTML The <a> tag, that stands for the “anchor” is used to create the hyperlinks in HTML documents. This is how a simple link can be created by using the anchor tag: <a href=”http://www.link.com”>Anchor text</a> Where: href: Stands for “Hypertext REFerence” which is used to specify the target page or … Read more

HTML img src (image source) with path options (5 examples)

HTML img src not exist

The img src attribute The img src stands for image source, which is used to specify the source of an image in the HTML <img> tag. For example, this is how the image path is set along with title and alt attributes in img tag: <img src=”demo-image.jpg” title=”Title of image” alt=”alt text here”> OR <img … Read more

HTML table: Basic syntax to CSS, Bootstrap based table demos

HTML table CSS

The HTML table structure Whether you are creating a simple table or plan to beautify with custom CSS, Bootstrap CSS or some other plug-ins, the base structure of a table starts with an HTML <table> tag. This is followed by using the table rows, table headings, table data and table footer tags. A basic table … Read more