SSrishtiinsrishh.hashnode.dev·Feb 25, 2023 · 2 min readJavaScriptJavascript is the world's most popular programming language. It is light weighted, easy to learn, compiled programming language. It is used in web development. History of JavaScript- Before 1995, web pages were made using HTML and CSS only. In 1995, ...00
SSrishtiinsrishh.hashnode.dev·Jan 28, 2023 · 2 min readCSS in web developmentCSS stands for Cascading Style Sheets. It is used to beautify web page or making the web page more attractive. Types of CSS: INLINE: Inline css is the style given to a web page in an element itself by using style attribute. <p style="color:#a52a2a">L...00
SSrishtiinsrishh.hashnode.dev·Jan 22, 2023 · 1 min readSome Basics of HTMLBlock Level element: A block-level element always begins on a new line, and browsers add a margin (a space) before and after the element by default. A block-level element always occupies the entire available width (stretches out to the left and right...00
SSrishtiinsrishh.hashnode.dev·Jan 21, 2023 · 1 min readEmmet in HTMLEmmet is a plugin for text editors that allows you to write HTML and CSS faster by using abbreviations that expand into full code. It can save a lot of time when writing code because you can type a few characters and then expand them into a long bloc...00
SSrishtiinsrishh.hashnode.dev·Jan 20, 2023 · 1 min readEntities in HTML&entity_name; in html Entities are the special character in html. Suppose we want to use < or > or this symbol in our code then our program confused that which symbol is used for tags and which is used as greater than or less than sign. So, we must w...00