-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp36metatag.html
More file actions
31 lines (22 loc) · 1.15 KB
/
exp36metatag.html
File metadata and controls
31 lines (22 loc) · 1.15 KB
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
<!-- example on meta tag-->
<DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="id.png"/>
<!-- info to browser -->
<meta charset="UTF-8"/><!--character set is a media used to translate high level code into binary code and binary code into high level code-->
<!-- Uniform Text coding (universional tranlation coding system)-->
<meta name="viewport" content="width=device-width,initial-scale=1"/> <!--name="viewport"=> viewport is one page.
content="width=device-width=> max width data=current device width
-->
</head>
<body>
<h3>demo on meta tag</h3>
</body>
</html>
<!-- meta tag (page settings & page configurations)
=> data about data
bg page=> browser, SE
=> settings related tag (used in head section)
=> unpaired
-->