forked from it-brains-ua/html-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5-hr.html
30 lines (26 loc) · 886 Bytes
/
5-hr.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документу</title>
<meta charset="utf-8" />
</head>
<body>
<p>
HTML is the standard markup language for creating Web pages. HTML
describes the structure of a Web page, and consists of a series of
elements. HTML elements tell the browser how to display the content.
</p>
<hr>
<p>
CSS is a language that describes how HTML elements are to be displayed on
screen, paper, or in other media. CSS saves a lot of work, because it can
control the layout of multiple web pages all at once.
</p>
<hr />
<p>
JavaScript is the programming language of HTML and the Web. JavaScript can
change HTML content and attribute values. JavaScript can change CSS.
JavaScript can hide and show HTML elements, and more.
</p>
</body>
</html>