Skip to main content

System Software | Device Drivers | Part - 2

Device Driver is a software & this is a type of system software. Driver are need for all the hardware installed in the computer because these drivers help to connect the hardware to the operating system, Without drivers the operating system will not give any commands. "The Driver acts like a bridge between the O/S & Hardware" Which Devices need Drivers : All hardware devices that are unknown to the operating system or Components that the operating system does not understand, drivers are need for them. Some device drivers come with hardware which is available in the CD & Some hardware requires drivers to be downloaded from the internet.  List of hardware device that require drivers : Card Reader Modem Motherboard Chipset Printer Web Cam Wi-fi Adapter Scanner Controller USB Devices Video Card Sound Card Which Devices not need Drivers : Nowadays, many drivers come in the operating system, due to which some hardware does not require drivers tha...

what is html-full introduction?

Html stand for hyper text markup language! which is the most widely used language on the Web HTML created by Berners-Lee in the 1991,html standard version publish in the 1995 and major version of HTML 4.01 publish in 1999 and today we use the HTML 5 which released in 2014.

 Html is the backbone of the web pages. It provide the structure it is the setup the codes and tags which are most easily interpreted by the web browsers and main important thing it is not programming language.


  • H - hyper mean a link,which taken form the one web page to another web page.
  • T - text something you write.
  • M - Markup How you lay down the text which mean how to design the web-page by the own creativity.
  • L - Language because they needed something to complete the word. 
Html consists of a series of elements.Html elements tell the browsers how to display the content.

A simple HTML Document Structure!
html,html w3schools,html color codes,html editor,html tutorial,html formatter,html youtube,html full form,html table,html5,html color picker,html and css,html color codes,html editor,html code,html colors,html5,html tags,html color picker,html tutorial,html table,html to pdf,html and css: design and build websites,html,htm knife,htmi cable,html template,htm,html5 and css3,ht-mt300,html for dummies,html5,html tutorial for beginners,html,html tutorial,html bangla tutorial,html and css tutorial for beginners,html full course,html css,html5,html tutorial for beginners in bangla,html css website design tutorial,html css javascript tutorial,html 10 minute school,html crash course



  • <!DOCTYPE html>
  • <html>
  • <head>
  • </head>
  • <body>
  • </body>
  • </html> 
<!DOCTYPE html>
  • It define the document type or it instruct the browser about the version of HTML.
  • A DOCTYPE or document type declaration is an introduction which tell the web browser about the markup language in which the current page is written.
  • The DOCTYPE is not element or tag,a DOCTYPE declaration appears at the top of  the web page before the all other elements.
  • HTML 5 there isn't any need of a reference to a document type definition (DTD) because HTML 5 is not based on Standard Generalised Markup Language(SGML).
  • HTML 5 the DOCTYPE declaration is only required for enabling the standard mode for writing document.  


<HTML></HTML>

 
  • The html tag is the starting tag of the web page.This element is the root element of an HTML page.
  • This tag informs the browser that it is an HTML document.Text between html tag describe the web document.It is a container for all the other elements of html except.
<HEAD></HEAD>
  • The head element contains meta information about the HTML page.
  • This part not visible on web page site.
  • It must be close before the body tag.
  • This tag represents the document's header which can keep other HTML tags like tittle,link,meta,script etc.

<BODY></BODY>

  • The body tag in HTML is used to define the main content present inside an HTML page.
  • This body tag contains the visible part of web page.
  • This tag contains the main content of the HTML document such as heading,paragraph,image,hyperlinks,tables,lists etc.

History Of  HTML

HTML     : 1991
HTML +   : 1993
HTML 2.0 : 1995
HTML 3.2 : 1997
HTML 4.01: 1999
HTML 5   : 2008



Thank you all of you! I hope you likes my post comment on my post and tell what you need.
You follow me on Instagram,Facebook(Facebook page and Group),Pinrest,Quora i give you link.
so support me and follow me.

Comments

Popular posts from this blog

whoami command in Kali Linux by Dr Hack Virus

 Hello guys I am Dr Hack Virus coming with new topic of Kali Linux Command.  Many users have problems that how to find the current user in Kali Linux, so i show you how to find the current user in Linux Operating System & this is basic command in Linux so then all users learn this command. So let Start ! Syntax  " whoami [options] "   whoami  This command display the username of the current user which are the currently login in the system.  whoami command is used both in Unix Operating System & Window Operating system. "Command" whoami Display the name of the user [ root ] who runs the command. Options  --help [ Display a help message and exit] --version [ Display version information and exit] these both command use the two times hyphen[ - ] symbol We have more command find out the who the current login in the system 1. id -un   " This command is works as a whoami command " 2. users " Users command in Linux system is used to show th...

Html Basic Fundamentals Part - 2

Hello Guys before post we talk about the html Structure In this topic we cover the HTML basic fundamentals. So let start the! Why We need the HTML editor ? A simple text editor or Upgraded text editor is you need to learn HTML .  A text where we can write our HTML code and also modify it. Many types HTML editor available on the internet but i show you 3 type HTML editor Notepad Notepad++ Bracket  Notepad is the Default Text Editor which comes with the windows operating system. Notepad++   and Bracket is the external software which was the need to install in our system.  What is the HTML Tag/Element/Pre-Define-Keywords ? HTML is a Markup Language and Markup Language is Set of Markup Tags . HTML tags like a Pre Define Keywords which how does display the content the web browser. We can also call the HTML tags the HTML elements.  HTML tags over or contains the three major parts of the HTML web page  Opening Tag Content  Closing Tag   SYSTENX OF ...

Html Heading Tags - Dr Hack Virus

Pre                                               NEXT Heading Tag   Any Content needs the heading . Heading Show you about the matter & any document start with the heading , html heading tag define as a tittle and subtitle which you want show on webpages.  No matter what sort of document you create, heading are titles or subtitles that you want to display on a page it's just about tells you the what purpose. The purpose of the headline is that by looking at it, we immediately find out on what subject it is. HTML headings using <hn> Elements  here h is heading & n is a Natural Number which ranges is 1 to 6 . HTML heading has six levels, which use the elements <h1>, <h2>,  <h3>,  <h4>,  <h5 > and <h6 > .  Importance of Heading : The Heading Element carry all the universal attribute. Each ...