-
Notifications
You must be signed in to change notification settings - Fork 0
/
2 html vs html 5.html
42 lines (32 loc) · 1008 Bytes
/
2 html vs html 5.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 lang="en">
<title>HTML vs HTML 5</title>
<h1>
<p>Anyone typing this input display the body tag because it is a HEADER TAG (body tag=header tag)</p>
</h1>
<h4>Diffence between HTML vs HTML 5</h4><br>
HTML4 is Old version.<br>
HTML 5 is a Latest version.<br><br>
HTML every content input for div tag.<br>
Eg:
div id="header"
div class=""
div id="footer"<br>
HTML 5 directly put the inputs.<br>
Eg:
header
article
nav bar
footer ****In this structure is called <strong>SEMANTIC HTML.</strong><br>
<h4>HTML 5 Advanced & Latest tags</h4>
meta tag ====> user HTML code website in information or describtion is called meta tag.
====> It includes char type,name,content,port,width,audio,video, and etc., <br>
section tag<br>
boot tag<br>
doc type tag
iframe tag ====> iframe tag plays the videos in body tag <br><iframe src="https://www.instagram.com"></iframe><br>
<br> <br>
<br>
<br>
<footer>====>This is a footer tag it is uesd to bottom of the inputs</footer>
</html>