-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdifference html.html
28 lines (28 loc) · 1.06 KB
/
difference html.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>difference</title>
</head>
<body>
<table border="1">
<tr>
<th>HTML</th>
<th>HTML5</th>
</tr>
<tr>
<td>Language in HTML does not have support for video and audio.</td>
<td>HTML5 supports both video and audio.</td>
</tr>
<tr>
<td>The HTML browser uses cache memory as temporary storage.</td>
<td>HTML5 has the storage options like:application cache, SQL database, and web storage.</td>
</tr>
<tr>
<td>HTML is compatible with almost all browsers because it has been present for a long time, and the browser made modifications to support all the features.</td>
<td>In HTML5, we have many new tags, elements, and some tags that have been removed/modified, so only some browsers are fully compatible with HTML5.</td>
</tr>
</table>
</body>
</html>