A

AMC ASAP ASI ATM ADCA API

B

BBA BBC BCA BDO BE BHMS BPO BSC BYE

C

CAA CAB CBI CBSE CC CCC CCTV CDS CEO CGPA CID CMA Computer COVID-19 CPU CRM CRPF CSE CSIR CSR CTC CV CIDR CSS

D

DGP DIY DM DNA DNS DP DRDO DSLR DVD DDR

E

ESI EEPROM

F

FBI FICCI FIFA FIFA FIR FUP

G

GATE GDP GIS GMT GPRS GPS GRE GSLV GST

H

HD HDFC HIV HMM HR HSBC HTML HTTP

I

IAS IBM ICC ICDS ICICI ICMR IDBI IFS IFSC IG IGST IIT IMAO IMF IMPS India INR IPC IPO IPS IRS IS ISC ISD ISIS ISO ITC ITI IUPAC IVF IDC IRL

J

JCB JEE JPEG

K

KFC KGF KYC

L

LAC LCD LLB LOL LPG

M

MBA MBBS MC MCA MRI

N

NABARD NCR NCRT NDA NEET NEFT NTPC

O

OK OP OPD OTG OTT

P

PAN PCOD PCS PDF PH PHD PNG POK PS PUC PWD

R

RIP RSVP RTI RTO

S

SAP SI SMS SOP SOS SP SSC SSD STD

T

TB TBH TCS Teacher TRP

U

UAE UNESCO UNICEF UNO UPI UPS UPSC URL

V

VIP

W

Wi-Fi

X

X- RAY JBL Full form KAS Full Form LPT Full Form in Computer PFP Full Form Programmable Logic Controller(PLC) SWAT FULL FORM TRAI Full Form What is the full form of IMDB? What is the Full Form of WMO Convolutional Neural Network (CNN) FIAT FULL FORM FULL FORM OF IG IN INSTAGRAM FULL FORM OF NTRO Indian National Army(INA) NYKS FULL FORM NDMA Full Form What is DSC's full form? What is the Full Form of EOD? WIPRO Full Form YONO Full Form BFF’s Full Form BRICS Full Form Full form of BSF Full form of CBS Full form of DRS Full form of FAO Full Form of NIA ISP Full Form LTE Full Form NDMA Full Form What is DSC's full form What is the Full Form of EOD WIPRO Full Form YONO Full Form SCSI Full Form Full Form of MEA SJVN full form Full Form of ROM Full form of SBI Full form of SIM Full Form of UNO ICT FULL FORM MICR FULL FORM MRP FULL FORM CISF Full Form Full Form Of BTS ARMY Full form of COBOL FULL FORM OF RADAR What is the Full Form of NSSO What is the Full Form of VPN? What is Full Form of PHC What is the Full Form of GAIL SOS Full Form in WhatsApp DGCA Full Form DSLR FULL FORM ICAO FULL FORM Full form of IMEI Full form of CDN Full form of OTG Bash Full Form CDMA Full Form Full form of CBSSBI Full form of MLA Una Full Form Team Full Form USB Full Form in Computers TBF Full Form Frequency Modulation(FM) Full form in Computer Java full form in computer NFS full form Tabular Data Stream(TDS) full form in Computer FAQ Full Form Des Implementation in C Full form of TFT NGO FULL FORM NOTA FULL FORM What is the Full Form of CPCB? Full Form of IPCC Full Form of NIA Full form of OMR Full Form of CVC Full Form of ODI in Cricket Full Form of PSLV and GSLV What is the Full Form of TTYL? Full form of CADD Full form of CSC Full form of BJYM BFF Full Form - Unlocking the Meaning of Best Friends Forever BHIM Full Form in Computer CIFS Full Form DTDC FULL FORM FULL FORM OF COD IN CHEMISTRY FULL FORM OF INTERNET Full form of MFG Full Form of Overseas Direct Investment (ODI) What is the full form of PUBG GBU Full Form

Full Form of HTML

What is HTML?

We have heard so much about and even studied HTML in our computer classes. The first thing we were taught was the full form of HTML. Still many of us don’t remember it. So what is HTML? What does HTML stand for? Well, HTML stands for Hypertext Markup Language. HTML is a kind of formatting system that is used to display the information that has been retrieved from the webpages/ internet. The unit or the information retrieved is known as the webpage i.e. the material retrieved from the World Wide Web. Web Pages include hypertext links that help in retrieving the information. These hypertext links are a part of HTML.

Full Form of HTML

In layman’s language, HTML is defined as a code that is used to make a webpage, its content, and if all the content is lost; HTML links help us to retrieve the information. There are many elements included in HTML which one can use to enclose a particular paragraph or content. The enclosing tabs help in a great way. These tags can create word or image links that will help in structuring the content in a certain way. Let us look at an example:

‘Daniel is my best friend.’

If this is the content that we have written; then we can enclose it in the paragraph tags like:

<p>Daniel is my best friend</p>
Full Form of HTML

This is how we write HTML coding and in this way, the links are generated. Now, let us look at the paragraph closely. There are four main elements of the content in HTML.

  1. The Opening Tag: The Opening Tag is used to specify that the content has begun. In the above case, we have specified it with the help of paragraph tags thereby including opening and closing brackets.
  • The Closing Tag: The Closing Tag is used to specify that the content/ paragraph have been finished. We end the paragraph by including tags and a slash in front of it. If we do not enter the slash in the paragraph tags then we can end up having strange results. It is important to state that the content has been ended.
  • Content: Now, what is content? The sentence which is between the opening and the closing tag is called content.
  • Element: The sentence along with the opening and the closing tags altogether is called an element.
  • Attribute: Attribute is one of the important parts of an HTML link. Attributes contain some extra information regarding the element. It is the information that we do not want to appear in the content. One must keep in mind the following things to write an attribute:
  • A certain space must be maintained between an attribute and an element.
  • The attribute name must have an equal sign.
  • The attribute value must be enclosed with the opening and closing quotation marks.
  • Characters like “ ‘ , = < > must also be quoted. If they remain unquoted the code would remain inconsistent.

Along with these elements, there are some Nesting Elements. Now, what are the Nesting Elements? When we can put additional elements in the content, then it is called nesting. For instance, the dog is very grumpy.

Here we can enclose the word ‘very’ with the element <strong>.

Let us look at the coding.

<p> the dog is <strong>very</strong> grumpy. </p> 

Here you can see that the element strong is nested correctly. We have to make sure that the opening and closing elements are properly nested. If there is any change in the coding, the browser will give strange and unexpected results.

Let us have a look at the entire coding.

 <html>
 <body>
 <h1>first heading</h1>
 <p>paragraph. </p>
 </body>
 </html> 

This is how the HTML coding works. HTML is a programming language which is used to create web pages and maintain it in a certain way. The tags that we use in the coding are used to specify different things. For instance, if we wish to insert an image in the paragraph, we will use the tag <img>. Similarly, to include a heading we will insert the tag <h1> or <h2> depending upon the content we are writing.

One thing has to be kept in mind i.e. the tags must be properly opened and closed in other to achieve the result. Thus, HTML is one programming language that is used by web page creators to maintain them.