Skip to main content

Web Technologies

Websites are the backbone of the Internet, and they are all built using three main technologies.

  • HTML is used for filling web pages with content and for shaping their structure.
  • CSS is intended for styling, positioning and appearance.
  • JavaScript makes it possible to add functionality, that is, responses to user actions.
HTML, CSS and JavaScript web technologies

These three basic technologies are not enough to create a website, in fact. You also need to learn about code editors, version control systems, bundlers, frameworks, libraries, hosting arrangements and other concepts.

webdev

HTML

HyperText Markup Language is a markup language for web documents. This is a set of rules for structuring (marking up) text information, adding images, creating tables, forms, lists, etc.

HTML document is a text file with .html extension. A document marked up with HTML is interpreted by web browsers, and users see not the source code with markup elements but the result of such processing, a web page.

markup
Tip

You are reading an HTML document right now. These notes constitute a page marked up with HTML.