Introduction to Web, HTML & Servers.!

Introduction to Web

The Web is commonly known as the WWW (World Wide Web) is an interconnected system of web pages accessible through the Internet.

How Web Works?

Computers connected to internet are also known as Clients. Servers are that store Webpages. whenever Client wants to access specify Webpage it connects to the server where that web page is stored and it will find with the help of DNS.

  • below diagram represent the connection between client and server sf

webWork.png

Introduction to HTML

HTML stands for Hyper-Text Markup Language. Html also knows as text markup language in short word html is a skeleton for buiding a website. it designed to be displayed in a web browser.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Intro to HTML</title>
  </head>

  <body>
    <h1>Hello, World</h1>
    <p>Good Evening to Everyone</p>
    <a href="https://www.geeksforgeeks.com">geeksforgeeks</a>
    <img src="img.jpeg" alt="logo">
  </body>
</html>

Tag's in HTML

In HTML, a tag is used for creating an element. The name of an HTML element is the name that appears at the beginning of the element's start tag and at the end of the element's end tag (if the element has an end tag).

  • below are some of the example of various tag's :

<h1> heading number 1 </h1>

<p> this is paragraph </p>

<a href="leetcode.com"></a>

<div> this is division </div>

<img src="img.jpeg" alt="logo" width="800" height="500">

Introduction to Servers

Servers are computers that store webpages, sites, or apps. When a client device wants to access a webpage, a copy of the webpage is downloaded from the server onto the client machine to be displayed in the user's web browser.

What is Apache Server

The Apache HTTP Server is a free and open-source cross-platform web server software, released under the terms of Apache License 2.0. Apache is developed and maintained by an open community of developers.

apache server.png

Live Server by Ritwick Dey

Live server is a web Extension by Ritwick Dey that helps you to reload live your code of your web page. just ctrl+s, then the live server will load the new changes in page.

Code_FoGOwMp3F1.png