-
Javascript Arrow Function
Reading Time: < 1 minutes 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 () […]
-
How To Link CSS File To HTML
Reading Time: < 1 minutes 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 […]