Beginning the first step of the journey with Basic Web and HTML...

Beginning the first step of the journey with Basic Web and HTML...

In this article I am sharing my experience, which I learned in today's class.

1. What are Web and HTML?

  • HTML: The HyperText Markup Language is the standard Markup Language used to display a web page, it is the Basic of all Programming Languages. In This Markup Language, we can create a basic website using tags, elements and attributes.

  • Web: By using code we design web pages. We type the code on VS Code or other platforms, the output is shown on the web page.

2. What is a web server?

  • A web server is to display website content by storing the data and delivering web pages. a web server is a computer that stores web server software and other files related to a website, such as HTML documents, and images.

  • A web server can be used to serve either static or dynamic content. Static refers to the content being shown as is, while dynamic content can be updated and changed.

    3. What is Apache?

  • Apache is web server software.

  • it is secure and fast software.

  • Apache is free and open-source software that allows users to deploy their websites on the internet.

4. Live Server

  • Normally when you make a change in your code or write something new, you need to refresh the
    page manually to see the changes.

  • Once you make changes in your code or write something new, after saving it, the browser will automatically refresh itself. Then we will be able to see the changes quickly and automatically.

5.HTML Tag and Elements

  • elements contain tags popularly known as HTML tags.HTML page consists of three major parts opening tag, content, and closing tag.

Basic element

HTML element:

element is the main element and it defines the whole HTML document.

Head element:

element is a container for metadata.

Title element:

the tag defines the title of the document.

Body element:

the element defines the document's body.

P element:

the element defines a paragraph

IMG element:

Tag is used to embedding an image in an HTML page. The src attribute specifies the path to the image to be displayed

A element:

A tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to

H1 element:

the element defines a heading.

These all are the basic topic I learned and shared with you if you like this article please let me know in the comment.

thank you so much for reading this article.