Parvez M Salman Samisalmansami.hashnode.dev·Jan 4, 2024HTML for Beginners | Part-01 - IntroductionIntroduction: Welcome to the vibrant world of web development! If you've ever wondered about the language that forms the backbone of every website, you're in the right place. In this beginner-friendly HTML tutorial series, we'll embark on an exciting...Discuss·10 likesHTML for Beginners - Be a Pro in HTMLHTML5
Sehrish Naveedsehrishnaveed.hashnode.dev·Dec 18, 2023Create a Multi-Page JavaScript Boilerplate with Webpack 5, lint-staged, husky and github-actions (Part 6)This is a continuation of Part 5. This is the last part. In this part, we will set up Husky and Github-Actions. Setup lint-staged and Husky Pre-Requisite: Set up git in the project. Run command git init to initiate it. It is a tedious process to run ...Discuss·45 readsUsing Webpack 5, Create a Multi-Page JavaScript Boilerplatejavascript-boilerplate
Ismail Adeshola Ogundeleislot.hashnode.dev·Aug 20, 2023CSS File Linking with HTML FileIntroduction Hypertext Markup Language (HTML) forms a fundamental aspect of web development, making it an essential component of the software engineering journey for beginners. Despite its significance, it cannot function in isolation; it requires ot...Discuss·1 like·37 readsHTML5
Mrinal Bagaimrinalb.hashnode.dev·Jan 25, 2023What's a boilerplate? And why use it?Let's talk about boilerplate code! The template you use when you see the blank screen and get started with writing is the basic code that get you started. It's been making the lives of developers easy for so long. We, developers, have engraved it int...Discuss·11 likes·114 readsboilerplate
Krishna Kumarwebdeb.hashnode.dev·Jan 25, 2023What is a boilerplate code? And why use it?In Information Technology, a boilerplate is a unit of writing that can be reused over and over without change. By extension, the idea is sometimes applied to reusable programming, as in “boilerplate code.” Legal agreements, including software and har...Discuss·28 readsboilerplate
Preeti samuelkamilapreetisamuel.hashnode.dev·Jan 24, 2023What is Emmet?“Emmet — the essential toolkit for web developers” Emmet is a plugin for text editors and IDEs that allows developers to write HTML and CSS code faster and more efficiently. It uses a shorthand syntax, known as "Emmet abbreviations," to expand into f...Discuss·29 readsHTML5
Jayesh Chauhanofficialjitandrachauhan.hashnode.dev·Jan 21, 2023Details of HTML boilerplate<!-- this is to identify our page as html 5 for the web browser --> <!DOCTYPE html> <!-- one more important point is that you should only put text or anything between html open and close tags; --> <!-- this is to declare that we are using english la...Discuss·54 readsHTML5
Genitmycode.hashnode.dev·Oct 4, 2022Explanation of HTML5 Boilerplate.What is Boilerplate. Boilerplate code, are sections of code that are repeated in many places with little or no alteration.HTML5 boilerplate <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content...Discuss·2 likes·179 readshtml5 boilerplate