-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
19 lines (18 loc) · 863 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 lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Practice Html</title>
</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>
<a href="https://www.w3.org/TR/html5/" target="_blank" title="html5 speicification">Hypertext Markup Language (HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applications.Web browsers receive HTML documents from a web server 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.
<img src="HTML.jpg" width="100%">
</body>
</html>