-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
19 lines (18 loc) · 804 Bytes
/
1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html>
<head>
<title>WEB1-HTML</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<ol>
<li><a href="1.html"> HTML</a></li>
<li><a href="2.html"> CSS</a></li>
<li><a href="3.html"> Javascript</a></li>
</ol>
<h2>HTML</h2>
<p>The HyperText Markup Language 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.
Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.</p>
</body>
</html>