-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (73 loc) · 2.69 KB
/
index.html
File metadata and controls
84 lines (73 loc) · 2.69 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Basic HTML Document</title>
</head>
<body>
<header>
<h1>HTML</h1>
<nav>
<a href="#">Blog</a>
<a href="#">Challenges</a>
<a href="#">CSS Grid</a>
<a href="#">CSS Locators</a>
</nav>
</header>
<article>
<header>
<img src="html5logo.png" alt="html5 logo" width="150" height="150" />
<p>
The <strong>H</strong>yper<strong>T</strong>ext
<strong>M</strong>arkup <strong>L</strong>anguage or HTML is the
standard markup language for documents designed to be displayed in a
web browser. It can be assisted by technologies such as Cascading
Style Sheets (CSS) and scripting languages such as JavaScript.
</p>
</header>
<h3>Development</h3>
<p>
In 1980, physicist Tim Berners-Lee, a contractor at CERN, proposed and
prototyped ENQUIRE, a system for CERN researchers to use and share
documents. In 1989, Berners-Lee wrote a memo proposing an Internet-based
hypertext system. Berners-Lee specified HTML and wrote the browser and
server software in late 1990. That year, Berners-Lee and CERN data
systems engineer Robert Cailliau collaborated on a joint request for
funding, but the project was not formally adopted by CERN. In his
personal notes[4] from 1990 he listed[5] "some of the many areas in
which hypertext is used" and put an encyclopedia first.
</p>
<h3>Elements</h3>
<p>
Tags may also enclose further tag markup between the start and end,
including a mixture of tags and text. This indicates further (nested)
elements, as children of the parent element.
</p>
<p><strong>Frame related entities</strong></p>
<ol>
<li>iframe</li>
<li>noframes</li>
<li>target</li>
</ol>
<a
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank"
>Read more about HTML on MDN Web Docs
</a>
<h3>Frameset versus transitional</h3>
<p>
In addition to the above transitional differences, the frameset
specifications (whether XHTML 1.0 or HTML 4.01) specify a different
content model, with frameset replacing body, that contains either frame
elements, or optionally noframes with a body.
</p>
<p><strong>See also</strong></p>
<ul>
<li>Breadcrumb navigation</li>
<li>Comparison of HTML parsers</li>
<li>Dynamic web page</li>
</ul>
</article>
<footer>Copyright © 2025 Code Hub.</footer>
</body>
</html>