Skip to content

Commit b3bf5df

Browse files
Elements And Comments
1 parent e54bc1b commit b3bf5df

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed

01- Elements And Comments/01.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!-- What is the meaning of HTML -->
2+
3+
<!-- HTML means => Hypertext markup language. -->

01- Elements And Comments/02.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>

01- Elements And Comments/03.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!--
2+
Question 01 => No
3+
Question 02 => Yes
4+
Question 03 => No
5+
Question 04 => No
6+
-->

01- Elements And Comments/04.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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" />

0 commit comments

Comments
 (0)