-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
42 lines (40 loc) · 2.04 KB
/
1.html
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
<!doctype html>
<html>
<head>
<title>WEB1 - html</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<div id="grid">
<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>
<div id="article">
<h2>HTML</h2>
<iframe
width="560px" height="315px" src="https://www.youtube.com/embed/tZooW6PritE" title="YouTube video player"name="iframe1" frameborder="0" gesture="media" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
<p><a href="https://www.w3.org/TR/html52/" target="_blank" title="html5 speicication">Hypertext Markup Language (HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applicatious. Web browsers receive HTML documents from a wab server of from local storage and render them into multimedia web pages. HTML describes structure of a web page semantically and originally included cuees for the appearandce of the document.</p>
<img src="coding.jpg" width=100%>
<p>HTML elements are building blocks of HTML pages. With HTML constructs, images and other obhicts, such as interactive form may be embedded into the rendered page. It provides means to create structured documents by denoting stuctural semantics for text such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets.</p>
</div>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/611e2119d6e7610a49b0ed48/1fder2jeq';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
</div>
<!--End of Tawk.to Script-->
</body>
</html>