-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParagraphs.html
17 lines (17 loc) · 1.18 KB
/
Paragraphs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Paragraph tag example</title>
</head>
<body>
<h1>What is HTML?</h1>
<p style="font-size: 25PX; line-height: 1.5e
m; text-indent: 150px; ">HTML is an acronym which stands for <B>Hyper Text Markup Language</B> which is used for creating web pages and web applications. Let's see what is meant by Hypertext Markup Language, and Web page.</p>
<p style="font-size: 25PX; line-height: 1.5e
m; text-indent: 150px; "><b>Hyper Text:</b> HyperText simply means "Text within Text." A text has a link within it, is a hypertext. Whenever you click on a link which brings you to a new webpage, you have clicked on a hypertext. HyperText is a way to link two or more web pages (HTML documents) with each other.</p>
<p style="font-size: 25PX; line-height: 1.5e
m; text-indent: 150px; "><b>Markup language:</b> A markup language is a computer language that is used to apply layout and formatting conventions to a text document. Markup language makes text more interactive and dynamic. It can turn text into images, tables, links, etc.</p>
</body>
</html>