what is OSI model | what are seven layer of OSI model | function of OSI model. OSI Reference Model INTRODUCTION Stands for open system interconnection. It has 7 layers. Each layer having specific functionality to perform. All layers work collaboratively to transmit the data from one person to another across the globe. All 7 layers of OSI model explain briefly: Physical layer To move data in the form of electromagnetic signals across a transmission medium. Responsible for movements of individual bits from one hop (Node) to next hop. Both data can be either analog or digital. Transmission media of data which can be wired or wireless. Data link layer It is responsible for moving frames from one hop to the next. Responsible for error free transfer of data frames. Controls the flow of data. Network layer The network layer works for the tra...
HTML Tutorial: Basic Structure of Website | Web Development... Introduction HTML is the standard markup language for creating Webpages. HTML stands for hyper text markup language. What is html? HTML describes the struture of a webpage. It consist of series of elements. It element tell the browser how to display the content. What is html element? An html element is defined by a start tag, some content and end tag : <tag_name> --content-- </tag_name> <! DOCTYPE> = Declaration defines that this document is an HTMLs document. < html > = The root element of an html page. < head > = Contains meta information about the html page. < title > = Specifies a title for the hml page. < body > = Define's the document's body and is a container for all the visible contents. < h1 > = Defines a large heading. < p > = Defines a paragraph. A simple HTML documen...
Comments
Post a Comment