-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
51 lines (43 loc) · 1.3 KB
/
Copy pathhtml.html
File metadata and controls
51 lines (43 loc) · 1.3 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Introduction</title>
<style>
body {
background-color: rgba(128, 128, 128, 0.452);
}
div img {
display: block;
margin-left: auto;
margin-right: auto;
}
div p {
text-align: justify;
background-color: grey;
border: 2px solid grey;
color: white;
padding: 15px;
}
</style>
</head>
<body>
<div>
<img src="html.png" width="500" height="500" alt="" />
<p>
HTML stands for Hypertext Markup Language, and it is the most widely
used language to write Web Pages. Hypertext refers to the way in which
Web pages (HTML documents) are linked together. Thus, the link
available on a webpage is called Hypertext. As its name suggests, HTML
is a Markup Language which means you use HTML to simply "mark-up" a
text document with tags that tell a Web browser how to structure it to
display. Originally, HTML was developed with the intent of defining
the structure of documents like headings, paragraphs, lists, and so
forth to facilitate the sharing of scientific information between
researchers.
</p>
</div>
</div>
</body>
</html>