-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintroduction_HTML.html
18 lines (18 loc) · 1.24 KB
/
introduction_HTML.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction to HTML</title>
</head>
<body style="background-color: #D4C16A; margin-top: 5px;">
<img style="float: right; height: 275px;" src="images/html_img.png" alt="HTML image">
<div style="background-color: darkturquoise; text-align: center; color: azure; font-size: 200%;">
<h2 style="margin: 0px; text-align: center;">Introduction to</h2>
<h1 style="margin: 0px; text-align: center; font-size: 600%;">HTML</h1>
</div>
<p style="color: white; font-size: 140%;">
HTML stands for Hyper Text Markup Language. It is used to design web pages using markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages. Markup language is used to define the text document within tag which defines the structure of web pages. This language is used to annotate (make notes for the computer) text so that a machine can understand it and manipulate text accordingly. Most of markup (e.g. HTML) languages are human readable. Language uses tags to define what manipulation has to be done on the text.
</p>
</body>
</html>