-
Javascript Arrow Function
What Is Arrow Function ? Arrow function is one of the features introduced in the ES6 version of JavaScript. It allows you to create functions in a cleaner and shorter way as compared to regular functions. Syntax :- In fact, if you have only one parameter you can skip the parentheses () as well We […]
-
How To Link CSS File To HTML
There are three ways 1. Inline CSS Inline CSS contains the CSS property in the body section attached with element is known as inline CSS. Here 2. Internal CSS The internal style is defined inside the <style> element. inside the head section. Here 3. External CSS The external CSS defined outside HTML page with separate […]