-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.html
87 lines (83 loc) · 2.64 KB
/
new.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Gourav Yadav</title>
</head>
<body>
<header>
This is header of the file.
</header>
<h1>Welcome to HTML5</h1>
<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>
<ul>
<li>unordered List element 1</li>
<li>unordered List element 2</li>
<li>unordered List element 3</li>
</ul>
<ol>
<li>Ordered list item 1</li>
<li>Ordered list item 2</li>
<li>Ordered list item 3</li>
</ol>
<ol start="10">
<li>different start Ordered list item 1</li>
<li>different start Ordered list item 2</li>
<li value="15">different start Ordered list item 3</li>
</ol>
<ol reversed>
<li> reversed list item 1</li>
<li> reversed list item 2</li>
<li> reversed list item 3</li>
</ol>
<dl>
<dt>Element 1</dt>
<dd>This is element one of the descripted list</dd>
</dl>
<hr>
<nav>
This is navigation section.<br>
This section is used for navigation only but i dont understand its purpose.
</nav>
<table border="5" width="1000" height="300">
<caption><b>This is the caption of the table</b></caption>
<tr>
<th>R1E1</th>
<th>R1E2</th>
<th>R1E3</th>
</tr>
<tr>
<td>R2E1</td>
<td>R2E2</td>
<td>R2E3</td>
</tr>
<tr>
<td>R3E1</td>
<td>R3E2</td>
<td>R3E3</td>
</tr>
</table>
<code> This is the code which I typed in the code tag</code>
<br>
<button type="button" name="button"> Button to click</button>
<br>
<meter value="60" min="0" max="100"></meter><br>
<progress value="60" max="100">60% full</progress><br>
<bdo dir="rtl">I am Gourav Yadav</bdo>
<br><iframe src="https://gouravg.wixsite.com/guru" width="50%" height="500"></iframe>
<a href="mailto:[email protected]?subject=feedback">email me</a>
<p>This is paragraph including a <b>bold</b> word and a <strong>strong</strong> word <br>
and now we are <em>Emphasising</em> a word and just <i>Italicising</i> a word</p>
<a href="https://gouravg.wixsite.com/guru " target="_blank">This is my website link</a>
<figure>
<img src="Untitled.png" alt="I am a Gold Medalist" width="90%px">
<figcaption>This is the caption of the figure</figcaption>
</figure>
<footer>This is footer of the file</footer>
</body>
</html>