The preload value of the <link> element’s rel attribute lets you declare fetch requests in the HTML’s <head> , specifying resources that your page will need very soon, which you want to start loading early in the page lifecycle, before browsers’ main rendering. Following are different content types can be preloaded. The possible as attribute … Read More “HTML: Link rel – Preload” »
Category: Websites
HTML | <a> rel Attribute The “rel” attribute specifies the relationship between the current document and the linked document/content. Only used if the “href” attribute is present. Syntax: <a rel=”value”> Search engines may also use the information in the “rel” attribute to determine how to index or display the page. Value Description alternate … Read More “HTML: Attributes of rel” »
WCAG 2.0 checklist Level A (Beginner) Guideline Summary 1.1.1 – Non-text Content Provide text alternatives for non-text content 1.2.1 – Audio-only and Video-only (Pre-recorded) Provide an alternative to video-only and audio-only content 1.2.2 – Captions (Pre-recorded) Provide captions for videos with audio 1.2.3 – Audio Description or Media Alternative (Pre-recorded) Video with audio has a … Read More “WCAG 2.0 checklist” »
Using schema.org metadata, it’s easy to associate all of your online profiles – both social and local – with your website in just a few lines of code. There is a simple code to put all your social profies on the website, which enable bots to help detecting the social profiles associated with a website … Read More “How to Force detecting the Social Profiles associated with a Website” »
In HTML a very long text is not automatically wrapped. Especially if there are no spaces in your string your browser doesn’t necessarily know where it should break the line. In most cases you don’t want the people use the horizontal scrollbar to read the entire text but CSS allows you to force the browser … Read More “Word Wrap long text in HTML” »