Everything you need to know about HTML

Srishti Majumder
3 min readJul 24, 2022

--

Hey readers, So if you starting off with your Web Developement. Then while surfing the internet you must have come across HTML. Do you know why HTML should be learned at the beginning of this journey? The answer to this question is here —

To build a website, we must make a structure of what all we need to add in our website, for which you must know HTML. Apart from this in general, every other job requirement mentions that you must know a particular JavaScript framework to build your front-end project, but do you know these frameworks are nothing but 70% HTML syntaxes and 30% JavaScript. So, at the very beginning, learning HTML is not an option but a necessity.

How do websites work?

Web browsers request web pages from web servers using a URL(Uniform Resource Locater). A URL is used to address a document(web page) on the web, we call it a Web Address.

structure — scheme://prefix.domain:port/path/filename

here —

  • scheme — defines the type of Internet service (most common is http or https)
  • prefix — defines a domain prefix (default for http is www)
  • domain — defines the Internet domain name (like w3schools.com)
  • port — defines the port number at the host (default for http is 80)
  • path — defines a path at the server (If omitted: the root directory of the site)
  • filename — defines the name of a document or resource

So, the next step is to learn about HTML in detail. So, check out the following links to learn everything you need to know about HTML.

So, that was it. I hope you liked reading/listening to my blogs. I’ll be back with more such exciting blogs. Till than stay tuned !!!

Happy Coding!!

--

--

Srishti Majumder

Hey, I am young programmer striving to learn something new everyday and share it via my blogs. Neither a pro nor a noob, just an intermediate.