SSSumant Sahooinsumantdev.hashnode.dev·Mar 19, 2024 · 7 min readInroduction to Html and Formatting TagHTML HTML, known as Hyper Text Markup Language, is a markup language . It used for creating websites and web applications. A web application's skeleton is built using HTML to build a structure. What is HTML 5 ? 1.HTML 5 is the fifth and current...01P
SSSumant Sahooinsumantdev.hashnode.dev·Mar 18, 2024 · 1 min readHow to insert Image and links in Html ?To 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
SSSumant Sahooinsumantdev.hashnode.dev·Mar 17, 2024 · 1 min readThis Is My First WWWProject!<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Project</title> </head> <body> <h2>World Wide Web</h2> <p>The world wide web (w3) is a wi...00