Posts

Showing posts from November, 2025

Basic concepts of CSS

Image
Css :- Css is a language that describes the style of an HTML document. Css describes how to HTML elements should be displayed , is a simply designed language intended to simplify the process making web -pages presentable. CSS stands for Cascading Style Sheets. CSS allows you to apply styles to web pages.  More importantly CSS enables you to do this independent of the HTML that makes up each web-page. CSS control the layout of multiple web-pages all at once. It save a lot of work. # Types of  CSS with their Syntax  Move to types of CSS ,so there are Three types of CSS; Inline CSS  Internal or Embedded CSS External CSS # Inline CSS :- Inline CSS applied directly to HTML elements  using the Style attribute. For example :-  Output is :  Output is : # Internal or Embedded CSS :-   When using Internal CSS , we must add a new tag ,<style> , inside the <head> tag. For example :-    Output is :  # External CSS  :- External ...

Computer Networks

Image
#  What is Computer ? Computer is a very versatile Electronic Machine man has ever created. Computers have made a great impact on our everyday life. Their presence is felt in almost everywhere of life be it home , school , college , office , industry etc. # Data and Information  All computers processing required data , which is a collection of raw figures and symbols , such as numbers , words , images , videos , and sounds , given to the computer during the input phase. Computers manipulate data to create information. Information is data that is organized , meaningful , and useful. #  Types Of Computers Analog Computer Digital Computer Analog Computer ;- Analog Computer handle to process information which is of a physical nature , as for example , temperature, pressure etc.      2. Digital Computer ;- Digital Computer process information which is essentially in a binary or two state from , namely zero and one. When talking about computers , we mostly refer...

Basic of HTML

ABOUT HTML HTML is the Standard Markup Language for creating web pages . HTML stands for HYPER TEXT MARKUP LANGUAGE . HTML describes the structure of a web page. HTML elements tell the browser how to display the content such as " heading ", " paragraph ", " table ", and so on. Browsers do not display the HTML tags , but use them to render the content of the page. A Simple HTML Document  The <html> element is the root element of an HTML page. The <head> element contains meta information about the document. The <title> element specifies a title for the document . The <body> element contains the visible page content . The <h1> element defines a large heading . The <p> element defines a paragraph. NOTE ;  Only the content inside the <body> section (the white area ) is displayed in a browser. #HTML Text Formatting   <b> : Bold Text <strong> : Important Text <i> : Italic Text <em> : Emphas...