-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
90 lines (87 loc) · 2.13 KB
/
page2.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
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fruits</title>
</head>
<body>
<header>
<h1>
<big>FRUITS</big>
</h1>
</header>
<hr><hr>
<main>
<ol>
<section>
<li> <h3>APPLE</h3> </li>
<article>
<ul>
<li> <p>Apple is red on outside and white inside</p> </li>
<li> <p>Apple also has seeds at its center</p> </li>
</ul>
</article>
</section>
<hr>
<section>
<li> <h3>BANANA</h3> </li>
<article>
<ul>
<li> <p>Banana has a cover which you have to peel</p> </li>
<li> <p>Banana is soft white inside</p> </li>
</ul>
</article>
</section>
<hr>
<section>
<table>
<thead>
<caption>Fruits Table</caption>
<tr>
<!-- <th colspan="2"> -->
<th>Fruits name</th>
<th>Colour</th>
</tr>
</thead>
<tbody>
<tr>
<td>Apple</td>
<td>Red</td>
</tr>
<tr>
<td>Banana</td>
<td>Yellow</td>
</tr>
</tbody>
</table>
</section>
<hr>
<!-- DETAILS TAG and BDO TAG -->
<!-- BDO -> reverse the direction of text -->
<section>
<details>
<summary>palindrome example</summary>
<p>
Original : nayan <br>
Reversed : <bdo dir="rtl">nayan</bdo>
</p>
</details>
<details>
<summary>non-palindrome example</summary>
<p>
Original : nayam <br>
Reversed : <bdo dir="rtl">nayam</bdo>
</p>
</details>
</main>
</ol>
<hr>
<video src="/samriddha.mp4" width="560" height="315" controls loop autopaly>samriddha</video>
<hr><hr>
<footer>
copyrights belongs to P.B.
</footer>
</body>
</html>