SKSanthamma Kuppireddyinsanthammakuppireddy.hashnode.dev·Mar 21, 2024 · 1 min readHTML TablesHTML tables allow a developers to arrange data into rows and columns.Please find the HTML Program and output for the below. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, init...00
SKSanthamma Kuppireddyinsanthammakuppireddy.hashnode.dev·Mar 21, 2024 · 1 min readList Orderlist and unorderlist-revision1<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>This is basic HTML Revision</title> </head> <body> <!--This is basic html revision--> <h1...00
SKSanthamma Kuppireddyinsanthammakuppireddy.hashnode.dev·Mar 20, 2024 · 2 min readHow To Use Git And Github?Git and Github intro and commands. what is GIT? Git is (distributed version control system). open-source version control software, used for managing and tracking file revisions. You can use Git with any file type, but it’s most often used for trackin...00
SKSanthamma Kuppireddyinsanthammakuppireddy.hashnode.dev·Mar 19, 2024 · 3 min readIntroduction of HTMLWhat is HTML? HTML stands for Hyper Text Markup Language,which is used for creating Webpages , it's describes the structure of a Web page. HTML consists of a series of elements and elements tell the browser how to display the content. Each HTML el...00
SKSanthamma Kuppireddyinsanthammakuppireddy.hashnode.dev·Mar 15, 2024 · 1 min readHTML First Program<!DOCTYPE html> <html> <head> <title>First HTML Document</title> </head> <body> <h1>This is my first html program</h1> <h2> Heading Second</h2> <h3>Heading Third </h3> <h4>Heading Fourth</h4> <h5>Heading Fifth</h5> ...00