santhammakuppireddy.hashnode.devHTML 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...Mar 21, 2024·1 min read
santhammakuppireddy.hashnode.devList 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...Mar 21, 2024·1 min read
santhammakuppireddy.hashnode.devHow 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...Mar 20, 2024·2 min read
santhammakuppireddy.hashnode.devIntroduction 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...Mar 19, 2024·3 min read
santhammakuppireddy.hashnode.devHTML 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> ...Mar 15, 2024·1 min read