Different ways to load JavaScript in HTML
I'm a frontend developer and i create web development content to help you out with your journey.
Search for a command to run...
I'm a frontend developer and i create web development content to help you out with your journey.
Learn how to create this windows 10 settings hover effect that you can use in your website with HTML, CSS and JavaScript

Learn how to make a hover effect that fills a button with color from bottom to top on hover, and fills out from bottom to top on hover out

Learn how to achieve this awesome windows 10 calendar like border hover effect that you can use in your website

In this blog you'll be able to learn how to achieve this awesome gradient border effect that circles in an element on hover

Regular Script Loading Inside of the head tag
Browser fetches and executes the script first before parsing the HTML body.
An error might occur here when you're manipulating the DOM because script is executed first and DOM doesn't exist yet.

Regular Script Loading at the end of the tag

Async Script Loading

Defer Script Loading
