forked from sarthikbabuta/HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaltu.html
More file actions
42 lines (40 loc) · 1.03 KB
/
faltu.html
File metadata and controls
42 lines (40 loc) · 1.03 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
<html>
<head>
<style>
p
{
font-size: 20px;
font-family:arial;
color: blue;
}
h1
{
color: green;
font-style: italic;
text-decoration : "blink";
}
.list
{
font-size: 20px;
color: red;
}
body
{
background-color: lightblue;
}
</style>
</head>
<body>
<h1> HTML </h1>
<p>HyperText Markup Language (HTML) is the standard markup language for creating web pages and web applications. With Cascading Style Sheets (CSS), and JavaScript, it forms a triad of cornerstone technologies for the World Wide Web.[1] Web browsers receive HTML documents from a webserver or from local storage and render them into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.</p>
<h1>HTML VERSIONS</h1>
<div class="list">
<ul style="list-style-type=disc">
<li>November 25, 1995: RFC 1867 (form-based file upload)</li>
<li>May 1996: RFC 1942 (tables)</li>
<li>August 1996: RFC 1980 (client-side image maps)</li>
<li>January 1997: RFC 2070 (internationalization)</li>
</ul>
</div>
</body>
</html>