-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
30 lines (25 loc) · 938 Bytes
/
Copy path2.html
File metadata and controls
30 lines (25 loc) · 938 Bytes
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
<!DOCTYPE html>
<html>
<body>
<!--HTML Headings
HTML headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading: -->
<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>
<!--HTML Paragraphs
HTML paragraphs are defined with the <p> tag-->
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<!--HTML Links
HTML links are defined with the <a> tag:
The link's destination is specified in the href attribute.
Attributes are used to provide additional information about HTML elements.-->
<a href="https://www.w3schools.com">This is a w3schools link</a>
<a href="https://www.w3schools.com/html/html_basic.asp">This tutorial's link</a>
<img src="/images/المسجد الأقصى.jpg" alt="W3Schools.com" width="7500" height="5632">
</body>
</html>