-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice.html
133 lines (112 loc) · 4.46 KB
/
practice.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<title>
practicing html
</title>
<meta name="viewpoint" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<h2 class="heading"> Practice makes a man perfect!</h2>
<h3 id="hi"> More practices </h3>
<hr>
<div id="sub&sup">
<p> can i have a glass of H<sub>2</sub>O </p>
<p>cant solve the x<sup>3</sup>
</p>
</div>
<p> This is a paragraph
<span>an icon</span> of 20 words
</p>
<a href="#subandsub">Learning sub and sup</a> <br>
<a href="https://www.facebook.com/profile.php?id=100084084076025" target="_blank">My profile</a>
<a href="mailto:[email protected]">Send mail to Tasnim</a>
<br><br>
<video src="vid.mp4" width="400" height="300" muted controls autoplay></video> <br><br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/yW93GlH3N7Q?si=BhA-lpxIxhaIoDgW"
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope;
picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<br> <br>
<!-- <iframe height="500" width="700" src="https://en.wikipedia.org/wiki/.org" ></iframe> -->
<!-- <embed src="test.pdf" type="application/pdf" width="500" height="700"> -->
<!-- <br><br> -->
<!-- <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7296.176172385403!2d90.26220739999997!3d23.88649495!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755e9a0a01a5ed3%3A0x5d4acad3e97573c6!2sIslamnagar%2C%20Savar!5e0!3m2!1sen!2sbd!4v1730621445432!5m2!1sen!2sbd" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> -->
<dl>
<dt>Walton tv</dt>
<dd>Deshi brand</dd>
<dt>Iphone</dt>
<dd>Apple product</dd>
</dl>
<form action="" method="post">
<label for="Full_name">Full Name: </label> <br>
<input type="text" name="Full_name"><br><br>
<label for="Email">Email: </label><br>
<input type="text" name="Email"><br><br>
<label for="Password">Password: </label> <br>
<input type="password" name="Password"><br><br>
<label for="message">Your message:</label> <br>
<textarea name="message"></textarea><br><br>
Choose a course <br>
<input type="radio" name="course" value="Algorithm"> Algorithm
<input type="radio" name="course" value="EDC"> EDC
<input type="radio" name="course" value="Java"> Java
<br> <br>
Choose a course <br>
<input type="checkbox" name="course" value="Algorithm"> Algorithm
<input type="checkbox" name="course" value="EDC"> EDC
<input type="checkbox" name="course" value="Java"> Java
<br> <br>
Choose Division:
<input name="Division" list="Division" placeholder="Division">
<datalist id="Division">
<option value="Science"></option>
<option value="Commerce"></option>
<option value="Humanities"></option>
</datalist>
<input type="submit" value="Submit"> <br>
</form>
<table border="5" cellpadding="20" cellspacing="5">
<caption>
<h3>Practice Table</h3>
</caption>
<tr>
<th>Name</th>
<th>Roll</th>
<th>Mark</th>
</tr>
<tr>
<td>Tasnim</td>
<td>384</td>
<td>38</td>
</tr>
<tr>
<td>Anika</td>
<td>385</td>
<td>35</td>
</tr>
<tr>
<td>Ikata</td>
<td>345</td>
<td>37</td>
</tr>
</table>
<ul style="list-style-type: circle;">
<li>Tasnim</li>
<li>Anika</li>
<li>Ikata</li>
</ul>
<ol type="a">
<li>Tasnim</li>
<li>Anika</li>
<li>Ikata</li>
<li>Aliases
<ul>
<li>Girlypop</li>
<li>Swetu</li>
</ul>
</li>
</ol>
<footer> © tasnim</footer>
<!-- <aside>aside bar</aside> -->
</body>
</html>