Skip to content

Commit 0f823f7

Browse files
author
Hasib Hasan
committed
first commit
0 parents  commit 0f823f7

File tree

6 files changed

+120
-0
lines changed

6 files changed

+120
-0
lines changed

audio-video.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<iframe width="560" height="315" src="https://www.youtube.com/embed/Pn-V1UTSF00?si=ct3QSkyIvXNYNN_c" 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>
10+
<div class="sound">
11+
<audio controls src="media/got.mp3"></audio>
12+
</div>
13+
<div class="lecture">
14+
<video controls src="media/lecture.mp4"></video>
15+
</div>
16+
</body>
17+
</html>

from.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<form action="">
10+
<p>Name: <input placeholder="Enter your name" type="text"></p>
11+
<p>Telephon: <input type="tel" name="" id=""> </p>
12+
<p>Email: <input pattern="asrrese" type="email" name="" id=""></p>
13+
<fieldset>
14+
<legend>Select tour pitha</legend>
15+
<p> <label for="Chotoi"></label><input type="radio" name="pitha" id="Chotoi">Chotoi</p></label> </p>
16+
<p> <label for="vapa"></label><input type="radio" name="pitha" id="vapa">vapa</p></label> </p>
17+
<p> <label for="tell"></label><input type="radio" name="pitha" id="tell">tell er pitha</p></label> </p>
18+
</fieldset>
19+
<fieldset>
20+
<legend> select your vorta </legend>
21+
22+
<p> <label for="shutki"></label> <input type="checkbox" name="" id="shutki">shutki</p>
23+
<p> <label for="Allu"></label> <input type="checkbox" name="" id="Allu">Allu</p>
24+
</fieldset>
25+
<p><label for=""> special Instrustion: <textarea name="" id=""></textarea></label></p>
26+
<button type="submit">Submit your order</button>
27+
</form>
28+
</body>
29+
</html>

media/Css.mp4

73.8 MB
Binary file not shown.

media/logo.jfif

159 KB
Binary file not shown.

others.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Other Bepari Jahaj Company</title>
7+
<link rel="shortcut icon" href="media/logo.jfif" type="image/x-icon">
8+
</head>
9+
<body>
10+
<section>
11+
<p>top post</p>
12+
<article>
13+
<h1> blog 1 </h1>
14+
</article>
15+
<article>
16+
<h1 class="" id="" style="color: blueviolet;" title="read my secend"> blog 2</h1>
17+
</article>
18+
<article>
19+
<h1> blog 3 </h1>
20+
</article>
21+
22+
</section>
23+
24+
25+
</body>
26+
</html>

table.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Table</title>
7+
<style>
8+
table{
9+
border-collapse: collapse;
10+
}
11+
td, th{
12+
border:1px solid rgb(189, 8, 8);
13+
padding: 0 10px;
14+
15+
}
16+
</style>
17+
</head>
18+
<body>
19+
<table>
20+
<caption> rich man</caption>
21+
<thead>
22+
<tr>
23+
<th>name</th>
24+
<th>compani</th>
25+
<th>sarary</th>
26+
</tr>
27+
</thead>
28+
29+
<tbody>
30+
<tr>
31+
<td>Bill gets</td>
32+
<td>maicrosoft</td>
33+
<td>1000$</td>
34+
<tr>
35+
<td>mark zukarbrg</td>
36+
<td>Facebook</td>
37+
<td>1300$</td>
38+
</tr>
39+
<tr>
40+
<td>Sitive jobs</td>
41+
<td>Apple</td>
42+
<td>1200$</td>
43+
</tr>
44+
45+
</tbody>
46+
</table>
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)