© 2023 Hashnode
#html5
html and
One of the first things to work on when embarking on a new web project is developing a style guide. It can be a variation of Bootstrap or something invented from whole cloth. The important thing is the fact it is usable. So this is the styl…
Introduction Building web pages often gets tedious because you have to repeat an element. Copying and pasting can be helpful. However, there is a better approach. Emmet makes everything simpler and fa…
When writing HTML pages in modern code editors, we use plugins like emmet to type shortcuts like ! or html:5 and press Tab to populate some lines of code which define the basic structure of the webpag…
Functions in javascript. Functions are used to execute any task that repeats itself. //Declare Function function singHppyB(){ console.log("Happy Birthday!") } // Call Function singHppyB(); //Storing return value in new variable and ca…
To improve user experience, animations and micro-interactions are essential to many digital products today, and they bring more than just delight to users. Informative animations accompanying loading …
Web developers can organize information like text, images, links, and other data into rows and columns of cells using HTML tables. TAG ● The <table> tag is used to generate HTML tables. T ● Table rows are created using the <tr> tag, wh…
Images are a common element of web design, and they serve a number of different purposes on websites. Some of the main uses of images on websites include: Visual appeal Branding Illustration Navigation. <img src="" alt="" height=""…
Introduction to Media-Query Media queries are a feature of CSS that allows you to apply different styles to a webpage based on the characteristics of the device it is being displayed on. This can be u…
Have you ever wondered what we are using websites or web applications such as WhatsApp, www.goindigo.in, youtube, etc? How it works. And whose hard work behind the scene. Now, web developers come into the picture. With the help of framework…