Thursday, 22 June 2023

June 22, 2023

Full Form of IT and ITes Industry

                                                Full Form (IT and ITeS)

ICT- Information Communication Technology

IT- Information Technology

ITeS- It enable Services

GIS- Geographical information System

HR- Human Resources

BPO- Business Process Outsourcing

BPM-Business Process Management

GDP- Gross Domestic Product

MNC-Multinational Company

ISP-Indian Service Provider

GIC- Global In-house center

NCERT-National Council of Educational Research and Training

WBT- Web based Training

LMS- Learning Management System

FTP -File Transfer Protocol

PIN- Personal Identification Number

CAD- Computer Aided Design

CAM- Computer Aided Manufacturing

NEFT-National Electronic Funds Transfer

RTGS-Real Time Gross Settlement

ATM- Automated Teller Machines

CAT- Computerised Axial Tomography Machine

MRI- Magnetic Resonance Imaging Machine

ECG-Electrocardiogram Machine

CSM-Cardiac Screening Machine

EEG-Electro – encephalography Machine

NGO- Non-Governmental Organisations



June 22, 2023

                                                     Employability Skills Book


                                Subject Specific Book


Saturday, 11 March 2023

March 11, 2023

pre and bdo Tag in HTML

HTML <bdo> tag

HTML <bdo> tag stands for "bidirectional override" which is used to overrides the current/default text direction. This tag sets the direction of content within it to render on browser from left to right or right to left.

The <bdo> tag is useful for the languages which are written from right to left such as Arabic and Hebrew.

Syntax

  1. <bdo dir=" "> Content......</bdo>  

Following are some specifications about the <bdo> tag

DisplayInline
Start tag/End tagBoth start and End tag
Usagetextual

HTML pre tag

The HTML <pre> tag is used to specify pre formatted texts. Texts within <pre>.......</pre> tag is displayed in a fixed-width font. Usually it is displayed in Courier font. It maintains both space and line break.

It is widely used to display language examples e.g. Java, C#, C, C++ etc because it displays the code as it is typed.

Example:

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
   <center>
  <pre>
          Sun    Mon   Tue   Thru   Fri   Sat
  1       2     3      4     5     6
  7       8      9     10    11    12
   </pre>
   <bdo dir="rtl">Rajneesh</bdo>
   <bdo dir="ltr">Rajneesh</bdo>
  </center>
</body>
</html>




 

March 11, 2023

Style Tag in HTML

 

HTML Style

HTML Style is used to change or add the style on existing HTML elements. There is a default style for every HTML element e.g. background color is white, text color is black etc.

The style attribute can by used with any HTML tag. To apply style on HTML tag, you should have the basic knowledge of css properties e.g. color, background-color, text-align, font-family, font-size etc.

The syntax of style attribute is given below:

  1. style"property:value"  

Example:

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body style="background-color:pink;">
    <h1 style="color:red;">I am Red</h1>
<h1 style="color:blue;">I am blue</h1>
<h1 style="font-size:30;text-align:center;font-family:comic sans MS;">
Hi Everyone</h1>
</body>
</html>



March 11, 2023

Div Tag in HTML

 

HTML Div Tag

The HTML <div> tag is used to group the large section of HTML elements together.

We know that every tag has a specific purpose e.g. p tag is used to specify paragraph, <h1> to <h6> tag are used to specify headings but the <div> tag is just like a container unit which is used to encapsulate other page elements and divides the HTML documents into sections.

The div tag is generally used by web developers to group HTML elements together and apply CSS styles to many elements at once. For example: If you wrap a set of paragraph elements into a div element so you can take the advantage of CSS styles and apply font style to all paragraphs at once instead of coding the same style for each paragraph element.

Example:

<!Doctype html>

<html>

           <head>

                                <title>Inline CSS</title>

                </head>

                <body>

                    <div>

                                     <h1>Welcome to my website</h1>

                                                 <hr color="blue" size="6">

                                </div>

                               

                                <div>

                                   <h2>This is my first article</h2>

                                   <b> Rajneesh Shrivastava</b>

                   This article was written about HTML & Web designs training in Hindi Languages.

                             <hr color="red" size="6">

                           </div> 

<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>

                                 <hr color="red" size="6">

                                <div>

                                    <p align="center">Copywrite 2016 onlineustaad</p>

                                </div>

                                <hr color="red" size="6">

                </body>

</html>




March 11, 2023

Blockquote and q Tag in HTML

 

HTML <blockquote> tag

HTML <blockquote> tag is used to define a block of text which is quoted from another source. The Browser usually displays the content within <blockquote> tag as indented text.

If you want to insert a long quote then use <blockquote> and for short or inline quote use <q> tag.

Syntax

  1. <blockquote> quoted text......</blockquote>  

Following are some specifications about the <blockquote> tag

DisplayBlock
Start tag/End tagBoth start and End tag
UsageSemantic/textual

Example:




March 11, 2023

HTML Base Tag

 

HTML <base> tag

HTML <base> tag is used to specify a base URI or URL to use for all relative links contained within an HTML document.

Only one <base> element can be specified within a document, and it must be placed within <head> element. We can also specify how other links should open (in the same window, in another window, etc.) using the target attribute.

Syntax

  1. <base href="https://www.javatpoint.com">  

In HTML <base> element does not contain closing tag but in XHTML end tag </base> is required.

Following are some specifications about the <base> tag

DisplayNone
Start tag/End tagOnly start-tag
UsageAnchors and links

Example

<html>
<head>
        <base href="/D:images" target="_blank">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<img src="1.jpg">
       <img src="2.jpg">
       <img src="3.jpg">
</body>
</html>


Full Form of IT and ITes Industry

                                                 Full Form (IT and ITeS) ICT - Information Communication Technology IT - Information Tec...