Introduction Of web servers and Html
In this article, I explain what web servers are, how web servers work, and why they are important in html.
summary :
In the term of web server can refer to hardware or software, or both of them working together.
1. on the hardware side, a web server is a computer that stores web server software and a website's component files i.e HTML documents, images, and JavaScript files). A web server connects to the Internet and supports physical data interchange with other devices connected to the web.
2.On the software side, a web server includes several parts that control how web users access hosted files. At a minimum, this is an http server. an http server is software that understands url and http(the protocol your browser uses to view webpages). An HTTP server can be accessed through the domain names of the websites it stores, and it delivers the content of these hosted websites to the end user's device.
HTML :
HTML is a language made up of elements, which can be applied to the text to give them different meaning in a document structure a document into logical sections and embed content such as images and videos into a page. This module will introduce the first two of these and introduce fundamental concepts and syntax you need to know to understand HTML.
HTML elements : The HTML element is everything from the start tag to the end tag .
<tagname>Content goes here...</tagname>
Examples of some HTML elements:
<h1>My First Heading</h1>
<p>My first paragraph.</p>
Input elements of html :
The input elements of html is used to create interactive controls for web-based forms in order to accept data from the user , a wide variety of types of input data and control widgets are available.
Here are the different input types you can use in HTML:
<input type="button">
<input type="checkbox">
<input type="color">
<input type="date">
<input type="datetime-local">
<input type="email">
<input type="file">
<input type="hidden"> etc...
Thank you