<Html>Baciscs</Html>

What are the basic elements are use for building a web site, What is web server and How server works?

<Html>Baciscs</Html>

# What are the basic elements are use for building a web site?

There are many elements or tags that are uses for building a website, Let's talk about one by one.

What is Html? :

Html(Hyper Text Markup Language) is a format that tells a computer how to display a web pages, This are plain text with special "tags" or code that use to show content or information on your computer screen. the tage are has angle bracket "opening tag" and "closing tag" to close the tags forward slash("/") is used.

1.Html structure(Syntax)

  <!Doctype html>
  <html>
     <head>
     <title>Hello World</title>
     </head>
     <body>
       hello world!
     </body>
  </html>

2.Heading tag:

Heading tags are used for heading of your content. There are 6 headings(h1,h2,h3....h6). h1 is a larger heading and h6 is a smaller hading.

<!DOCTYPE html> Heading 1

This is first heading tag

3.Paragraph tag: paragraph tag are basically contain plain texts to show paragraph on web page.

     <!DOCTYPE html>
     <html>
        <head>
           <title>Heading 1</title>
       </head>
       <body>
           <p>This is first Paragraph tag</p>
       </body>
   </html>

4.Img tag: img tag are use to show images on web page."src" contain path of image if images are not available then used "alt" to show sorry no images are available

     <img src=" " alt=" " >

5.anchor tag: anchor tag is used to jump to the specific section of the web page. A "target" is used to open the link in new tab.

<a href="www.google.com" target="_blank">Google</a>

6.attribute tag: attribute contains more information about tag.

 <img src="XYZ.png" alt=" "  height="200" width="380">

# What is web server and How server works?

A web server are basically storing system that stores web components like(html, CSS and JS files) whenever, user/client request for the any information the server . Most famous servers are apache 2.0, Nginx etc.

#What is C-panel

C-panel is basically managing web hosting

Did you find this article valuable?

Support Danish Rayeen by becoming a sponsor. Any amount is appreciated!