Introduction to Web Development: HTML (HyperText Markup Language)

Introduction to Web Development: HTML (Hyper Text Markup Language)

HTML and Technology Is
HTML the new computer? is it a virus what does it do One of the most notable changes that has taken place around the world is technological advances. Today you can take your cell phone or your computer – two marvels of technology – and find a wealth of information, resources and countless ideas for connecting with people from all over the world. Before there were mobile apps, most of this work was done by websites. However, even with the development of mobile apps, websites still have a greater purpose that we may never survive. And HTML makes websites what they are.

What is HTML?
You are reading this article on a website. How does everything fit together to get this final “product”? Start with the most basic component, HTML. HTML, also known as hypertext markup language, is the “top stack” of a web page. Communicate the structure and translate the content of the website in a way that the end user (like you) can see and interact with.

Destroy it
Let’s explain word for word what HTML is.

hypertext
You have probably seen links on a website. They are often highlighted and underlined. However, depending on your website design approach, they may look slightly different. These links may redirect/redirect users to specific sections or pages of the website or to pages on other websites. Sections of text linked in this way are referred to as hypertext.

markers
You may have noticed that this article is divided into titles, paragraphs, links and images. We use HTML tags to translate content into something the end user can see, understand and communicate. To create the header, we use HTML tags to render the header. for example
.

You might be wondering what angle brackets or a strange combination of letters and numbers mean. Initially, this
is referred to as “Header Tag 1”. Tells our website to create a top-level header called “Header 1”.

subtitles have lower-level headings, e.g. For example, “Headings 4, 5, and 6.” To create them, we’ll use an HTML tag similar to the one above, but instead of the number 1, we’ll get the appropriate heading level, for example 4, 5, or 6; for example
(for department 4),
(for department 5) and
(for department 6).

We will use the HTML paragraph tag to create the paragraph. saved as . To add a hyperlink to text on our website, we use this tag: . To add an image to our website, we use the HTML image tag. saved as .