File tree 4 files changed +57
-0
lines changed
01- Elements And Comments
4 files changed +57
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!-- What is the meaning of HTML -->
2
+
3
+ <!-- HTML means => Hypertext markup language. -->
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < meta charset ="UTF-8 "/>
5
+ < title > My First Page</ title >
6
+ < meta name ="description " content = "This Is Description For My First Page "/>
7
+ < style > </ style >
8
+ < script > </ script >
9
+ < link rel ="stylesheet " href =""/>
10
+ </ head >
11
+ < body >
12
+ This Is My First Page!
13
+ </ body >
14
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!--
2
+ Question 01 => No
3
+ Question 02 => Yes
4
+ Question 03 => No
5
+ Question 04 => No
6
+ -->
Original file line number Diff line number Diff line change
1
+ <!-- 1 -->
2
+
3
+ <!--
4
+ Meta 'charset'
5
+ For Defining The Content Encoding.
6
+ -->
7
+ < meta charset ="UTF-8 " />
8
+
9
+
10
+ <!-- 2 -->
11
+
12
+ <!--
13
+ Meta 'Description'
14
+ This is Description for your page.
15
+ -->
16
+ < meta name ="description " content ="Your Website Description "/>
17
+
18
+
19
+ <!-- 3 -->
20
+
21
+ <!--
22
+ Meta 'Copyright'
23
+ This is to tell the person who is browsing your site that you have copyrighted material.
24
+ -->
25
+ < meta name ="copyright " content ="Your Company Or Brand Name " />
26
+
27
+
28
+ <!-- 4 -->
29
+
30
+ <!--
31
+ Meta 'Author'
32
+ It is the author or writer who wrote the content of the page.
33
+ -->
34
+ < meta name ="author " content ="Ali " />
You can’t perform that action at this time.
0 commit comments