fullstackwebdevelopbyafroj.hashnode.devDestructuring in JavaScript// 01. Count the occurrences.// You are building a word count generator that will take a large string of text as input and output the words and the number of times they are present in the string. Your task is to write a function that can count the oc...Jan 2, 2024·4 min read
fullstackwebdevelopbyafroj.hashnode.devCSS Assignment1.What is CSS and why use it? Cascading Style Sheets (CSS) is a language that specifies how a document is styled and presented. It's a fundamental technology of the World Wide Web, along with HTML and JavaScript. CSS is used to add style to a web pa...Jan 1, 2024·2 min read
fullstackwebdevelopbyafroj.hashnode.devHTML5, Semantic Tags1.What are the new things introduced in HML5? HTML5, the fifth version of the Hypertext Markup Language, introduced several new features and improvements over its predecessors. Some of the notable additions and changes in HTML5 include: New Semantic...Jan 1, 2024·5 min read
fullstackwebdevelopbyafroj.hashnode.devHTML Assignment1. Explain the Table and its properties. HTML tables allow web authors to organize data into rows and columns of cells. Here are some properties of HTML tables: Table: Defines the overall table Table Row (TR): Used to build each row Table Data (...Jan 1, 2024·3 min read
fullstackwebdevelopbyafroj.hashnode.devHTML Assignment1.What are inline and block element in HTML and the difference between them ? name a few inline elements and block elements. Inline Elements: Inline elements do not start on a new line and only take up as much width as necessary. They typically fl...Jan 1, 2024·4 min read