Posts

Structures in HTML [2.1]

Image
  1/ What is Structure ? Ans/-  In all kinds of documents, Structure helps readers very importantly to understand the messages you are trying to Convey and to navigate around the document So it's very important to learn Structure documents. Another example of structures:-                          The stories you read in the newspaper, for each story, there will be a headline, Some text, and possibly some images the article is long, and there may be sub-headings that split the story into separate sections. It basically helps the readers to understand articles easily. {Note- Basically "HTML language" is used to describe the structures of pages } Here is the HTML Code to describe STRUCTURES :- Example-0.1:- Here is the output:- {Important}:-  The HTML code in red is made up of characters that live inside angled brackets, these are called HTML elements. Elements are made up of two tags; an opening tag and a clos...

How a Website Works ?? [1.1]

Image
 When we are looking at a website , it is most likely that our browser receiving HTML,CSS from the web server that hosts the site. The web browser interprets the HTML,CSS Code to create the page. Small websites are often written just using HTML & CSS . Langer websites, which are updated regularly and use a content management system (cms) , blogging tools, e-Commerce sites often uses more technologies on the web server. We use also HTML & CSS in these complex technologies . Langer and complex sites use a database to store data and programming languages such as PHP, ASP.Net, JAVA, Ruby on the web Server. But you don't need these technologies what user sees.... Since the first web was created there have been several versions of HTML & CSS - each intended to be an improvement of previous Version. Currently these are running with HTML5 & CSS3 , may be they are still being developed, I suggest you to learn with the latest versions Because HTML5 & CSS3 build on prev...