Every web page is made of code.
HTML, CSS, and JavaScript are the key technologies used to build websites:
- HTML (HyperText Markup Language) defines the structure and content of a page.
- CSS (Cascading Style Sheets) define the visual look of the page — colors, fonts, spacing, sizes, and more.
- JS (JavaScript) make pages dynamic and interactive.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="script.js">
</head>
<body>
<h1>Heading</h1>
<p>And this is a paragraph</p>
<button>Button</button>
</body>
</html>