-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (60 loc) · 2.13 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<!-- LANG = "en" Yeh website read karega ki yeh website english mai hai -->
<!--
If you Press Exclamation {!} and press Enter key then you can access all HTML Structure
-->
<head>
<meta charset="UTF-8" />
<!-- Computer Hamari English Language Nahi samajhta hai Uske liye hum "UTF-8" likhte hai -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Iss line ka matlab hai ki Puraane browser aap yeh waala engine use kare-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Iss line ka matlab hai ki hamari website ko kisi bhi device mai acchi tareh ke se dikhaye-->
<title>HTML Crash Course</title>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- All Examples for Text { Matlab English mai kuch bhi kaise Website mai likh skte hai} -->
<br>
<a href="index.html">1. Index</a>
<a href="links.html">2. Links</a>
<a href="images.html">3. Images</a>
<a href="Lists.html">4. Lists</a>
<a href="tables.html">5. Tables</a>
<a href="forms.html">6. Forms</a>
<button><a href="blog.html">Blog</a></button>
<hr>
<br>
<!--1. HTML Heading Tags -->
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<hr>
<!--2. HTML Paragraphs Tags -->
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<hr>
<!--3. HTML Horizontal-Lines Tags -->
<h1>This is heading 1</h1>
<p>This is some text.</p>
<p>This tag is used for line break <strong><hr></strong></p>
<hr>
<!--4. HTML Line Breaks -->
<p>This tag is used for breaking line paragraph <strong><br></strong><br />with line breaks.</p>
<hr>
<!-- 5. HTML Main Formatting Elements -->
<p>
<strong>i) This is a very important formatting Tag <strong> to make text Bold!</strong>
</p>
<p>
<em>i) This is a very important formatting Tag <em> to make text italics!</em>
</p>
<hr>
<!-- 6. HTML Entities -->
<strong>i)This Entities is used for Displaying any HTML Tag <strong></strong>
</body>
</html>