Table of contents
No headings in the article.
1. What is the Web?
The Web is the common name for the World Wide Web (WWW). Web—is an interconnected system of public web pages accessible through the Internet. The Web is not the same as the Internet: the Web is one of many applications built on top of the Internet.
Web Pages A document that can be displayed in a web browser such as Firefox, Google Chrome, Opera, Microsoft Internet Explorer or Edge, or Apple's Safari. These are also often called just "pages."
Website A collection of web pages which are grouped together and usually connected together in various ways. Often called a "web site" or a "site."
web server A computer that hosts a website on the Internet.
2. What is Server ? A server is a software or hardware offering a service to a user, usually referred to as client. A hardware server is a shared computer on a network, usually powerful and housed in a data center. A software server (often running on a hardware server) is a program that provides services to client programs or a user interface to human clients.
3. What is a live server Launch a development local Server with live reload feature for static & dynamic pages
- by Ritwick Dey
What is Apache2?
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 under the auspices of the Apache HTTPD - Apache2 Web Server. Apache is the most commonly used Web server on Linux systems. Web servers are used to serve Web pages requested by client computers. Clients typically request and view Web pages using Web browser applications such as Firefox, Opera, Chromium, or Internet Explorer.
4. HTML tag
h1 tag used for heading. In H1 tag there are 6 tag as well like h1,h2,h3,h4,h5,h6.
<h1> Welcome to my First blogs</h1>
<h4> Thank you so much </h4>
Now we can see p tag actually p tag means that paragraph
<p> we can write any thing related to topic as our wish.</p>
<p> tag is block line element</p>
lorem lorem actually used to randomly a dummy paragraph. It's very useful for writing a quickly code
<p> Lorem ipsum dolor sit amet consectetur, adipisicing elit. Voluptates praesentium minima nobis tenetur illum vel quas temporibus totam velit dolores? Maxime doloremque soluta ipsam ea culpa impedit deleniti, ut in.</p>
Thank you, Ashish Kr Pal