HDHitesh Dewanganinhiteshdewangan.hashnode.dev·Mar 23, 2024 · 4 min readTable Tag in HTMLIntroduction: In HTML, the <table> tag is used to create tables. Tables are used to organize and display data in rows and columns. The <table> element serves as the container for the entire table, and it can contain other elements that define the str...00
HDHitesh Dewanganinhiteshdewangan.hashnode.dev·Mar 19, 2024 · 5 min readHTML IS EasyINTRODUCTION TO HTML Introduction of HTML HTML stands for Hypertext Markup Language. HTML is used to create a webpage. It is like a skeleton of a page. it is used to create the structure of webpage. Basic Structure What is Tag? In HTML, a tag i...01P
HDHitesh Dewanganinhiteshdewangan.hashnode.dev·Mar 18, 2024 · 1 min readHow to add links in HTMLWe can add links in HTML by using anchor tag The <a> tag defines a hyperlink, which is used to link from one page to another. The most important attribute of the <a> element is the href attribute, which indicates the link's destination. Example <!DOC...00
HDHitesh Dewanganinhiteshdewangan.hashnode.dev·Mar 18, 2024 · 1 min readHow to Insert ImagesTo insert Image in HTML we use image tag. image Tag is an empty tag, meaning it does not require closing tag. The <img> tag has two required attributes: src - Specifies the path to the image alt - Specifies an alternate text for the image, if the i...00
HDHitesh Dewanganinhiteshdewangan.hashnode.dev·Mar 16, 2024 · 3 min readMy First Html Code and how I pushed it into GitHub.Source Code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>The World Wide Web Project</title> </head> <body> <h1>World Wide Web</h1> <p>...00