Skip to content

Commit fe6646c

Browse files
authored
Add files via upload
1 parent 848f1a5 commit fe6646c

22 files changed

+463
-0
lines changed

1 first html.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Sazzad Hossen</title>
5+
</head>
6+
7+
<body>
8+
my name is sazzad hossen</br>
9+
i am 21 years old.
10+
i am from ewu.
11+
</body>
12+
</html>

10 Font style .html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Front Style</title>
5+
</head>
6+
7+
<body>
8+
<font color="red" size="28px" face="fantasy"> I love Bangladesh </font>
9+
<p style="background-color:red; color:black; font-size:28px; font-family:fantasy;"> BYE </P>
10+
</body>
11+
</html>

11 Ordered and unordered list.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>LIST</title>
5+
</head>
6+
7+
<body>
8+
<h2> Name of Courses </h2>
9+
<ol>
10+
<li> C++
11+
<li> java
12+
<li> Python
13+
</ol>
14+
<h2> Additional Course </h2>
15+
<ol start="4">
16+
<li> HTML
17+
<li> CSS
18+
</ol>
19+
<ol type="A">
20+
<li> HTML
21+
<li> CSS
22+
</ol>
23+
<ul>
24+
<li> HTML
25+
<li> CSS
26+
</ul>
27+
<ul type = "square">
28+
<li> HTML
29+
<li> CSS
30+
</ul>
31+
</body>
32+
</html>

12 add Image (Part - 1).html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Image ADD</title>
5+
</head>
6+
7+
<body>
8+
<img src="C:\Users\Hp\Downloads\PSX_20201008_011034.jpg" height="300px" width="300px" border="20" title="SAZZAD">
9+
</body>
10+
</html>

13 add Image (Part - 2).html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Image ADD</title>
5+
</head>
6+
7+
<body>
8+
<img src="C:\Users\Hp\Downloads\PSX_20201008_011034.jpg" height="300px" width="300px" border="20" title="SAZZAD" align="right" hspace="100" vspace="100" alt="sorry image is not found" />
9+
</body>
10+
</html>

14 iframe.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>iframe</title>
5+
</head>
6+
7+
<body>
8+
9+
<iframe width="560" height="315" src="https://www.youtube.com/embed/VJW0ou1yTYM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
10+
11+
<iframe src = "https://unicode-table.com/en/1F30A/"; height="500"; width="500"; align ="right"/><br/>
12+
</body>
13+
</html>

15 Hyperlink part-1.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Hyperlink</title>
5+
</head>
6+
7+
<body>
8+
9+
10+
<a href="https://www.youtube.com/watch?v=VJW0ou1yTYM&t=14s"> Click Here </a>
11+
12+
</body>
13+
</html>

16 Hyperlink part-2xt.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Hyperlink</title>
5+
</head>
6+
7+
<body>
8+
9+
10+
<a href="https://www.youtube.com/watch?v=VJW0ou1yTYM&t=14s"> Click Here </a>
11+
12+
</body>
13+
</html>

17 dividing screen.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>DIV</title>
5+
</head>
6+
7+
<body>
8+
<div style="background-color:black; height:200px; width:100%">
9+
<p style="color:white;"> This is div1 </p>
10+
11+
</div>
12+
13+
<div style="background-color:green; height:200px; width:100%">
14+
<p> This is div2 </p>
15+
</div>
16+
17+
<div style="background-color:yellow; height:200px; width:100%">
18+
<p> This is div3</p>
19+
</div>
20+
21+
</body>
22+
</html>

18 table part 1.html

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Table</title>
5+
</head>
6+
<style>
7+
table {
8+
width: 500px;
9+
height: 100px;
10+
border: 1px solid black;
11+
/*cellspacing*/
12+
border-spacing: 2px;
13+
}
14+
td,th{
15+
border: 2px solid black;
16+
/*cellpadding*/
17+
padding: 15px;
18+
19+
}
20+
tr{
21+
text-align: center;
22+
23+
}
24+
25+
</style>
26+
27+
<body>
28+
<table>
29+
<caption style="font-family:fantasy";> Student Info </caption>
30+
<thead>
31+
<tr align="center">
32+
<th> ID </th>
33+
<th> Name </th>
34+
<th> GPA </th>
35+
</tr>
36+
</thead>
37+
<tbody>
38+
<tr align="center">
39+
<td> 2019-1-60-063 </td>
40+
<td> Sazzad Hossen </td>
41+
<td> 3.32 </td>
42+
</tr>
43+
</tbody>
44+
<tbody>
45+
<tr align="center">
46+
<td> 2019-1-60-064 </td>
47+
<td> ANJILA </td>
48+
<td> 3.50 </td>
49+
</tr>
50+
</tbody>
51+
52+
</table>
53+
</body>
54+
</html>
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Table</title>
5+
</head>
6+
<style>
7+
table {
8+
width: 500px;
9+
height: 100px;
10+
border: 1px solid black;
11+
12+
}
13+
td,th{
14+
border: 1px solid black;
15+
}
16+
tr{
17+
text-align: center;
18+
19+
}
20+
21+
</style>
22+
23+
<body>
24+
<table>
25+
<caption style="font-family:fantasy";> Student Info </caption>
26+
<thead>
27+
<tr>
28+
<th> ID </th>
29+
<th> Name </th>
30+
<th colspan="2"> phone </th>
31+
</tr>
32+
</thead>
33+
<tbody>
34+
<tr>
35+
<td> 2019-1-60-063 </td>
36+
<td> Sazzad Hossen </td>
37+
<td> 011 </td>
38+
<td rowspan="2"> 012 </td>
39+
40+
</tr>
41+
<tr>
42+
<td> 2019-1-60-064 </td>
43+
<td> ANJILA </td>
44+
<td> 017 </td>
45+
</tr>
46+
<tr>
47+
<td> 2019-1-60-065 </td>
48+
<td> TISA </td>
49+
<td> 017 </td>
50+
<td> 016 </td>
51+
52+
</tr>
53+
</tbody>
54+
55+
</table>
56+
</body>
57+
</html>

2 Heading paragraph.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Sazzad Hossen</title>
5+
</head>
6+
7+
<body>
8+
<h1 align="center"> Bangladesh</h1> <hr/>
9+
<h2> Bangladesh</h2>
10+
<h3> Bangladesh</h3>
11+
<p align="justify">Bangladesh (/bæŋləˈdɛʃ/;[15] Bengali: বাংলাদেশ, pronounced [ˈbaŋlaˌdeʃ] (About this soundlisten)), officially the People's Republic of Bangladesh, is a country in South Asia.</p>
12+
<p align="justify"> It is the eighth-most populous country in the world, with a population exceeding 163 million people, in an area of 148,560 square kilometres (57,360 sq mi),[7] making it one of the most densely populated countries in the world. Bangladesh shares land borders with India to the west, north, and east, Myanmar to the southeast, and the Bay of Bengal to the south. It is narrowly separated from Nepal and Bhutan by the Siliguri Corridor, and from China by the Indian state of Sikkim in the north, respectively.</p> <p align="justify">Dhaka, the capital and largest city, is the nation's economic, political, and cultural hub. Chittagong, the largest seaport is the second-largest city.</P>
13+
</body>
14+
</html>

20 form create.html

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Form</title>
5+
</head>
6+
7+
<body>
8+
<h2> Form Create </h2>
9+
<form>
10+
11+
<div>
12+
<label for="fullname">Fullname: </label> <input type="text" name="fullname" id="fullname" required>
13+
</div><br>
14+
<div>
15+
<label for="email">Email: </label> <input type="text" name="email" id="email" required>
16+
</div><br>
17+
<div>
18+
<label for="password">Password: </label> <input type="text" name="Password" id="Password">
19+
</div><br>
20+
<div>
21+
<label for="dob">Date: </label> <input type="date" name="dob" id="dob">
22+
</div><br>
23+
<div>
24+
<label for="Photo">Photo: </label> <input type="file" name="photo" id="photo">
25+
</div><br>
26+
<div>
27+
<label for="Gender">Gender: </label> <input type="radio" name="Gender" id="Gender" value="male"> male
28+
<input type="radio" name="Gender" id="Gender" value="female"> female
29+
<input type="radio" name="Gender" id="Gender" value="other"> other
30+
31+
</div><br>
32+
33+
<div>
34+
<label for="religion">Religion: </label> <input checked type="checkbox" name="r1" id="religion" value="muslim">muslim
35+
<input type="checkbox" name="r2" id="religion" value="hindu"> hindu
36+
<input type="checkbox" name="r3" id="religion" value="boddho"> boddho
37+
</div><br>
38+
39+
<div>
40+
<label for="Department"> Department: </label>
41+
<select name="department">
42+
<option vale="CSE"> CSE </option>
43+
<option vale="EEE" selected> EEE </option>
44+
<option vale="ECE"> ECE </option>
45+
</select>
46+
47+
</div><br>
48+
49+
<div>
50+
<label for="Massage"> Massage : </label><br>
51+
<textarea cols="40' rows="30"></textarea>
52+
</div>
53+
54+
<div>
55+
<input type="submit" value="Register">
56+
<input type="reset" value="RESET">
57+
</div>
58+
59+
</form>
60+
61+
</body>
62+
</html>

21 add Audio video.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Audio Testing</title>
5+
</head>
6+
7+
<body>
8+
<audio controls>
9+
10+
<source src="F:\Music\(1).mp3" type="audio/mpeg">
11+
12+
13+
</audio>
14+
15+
<video controls style="height:400px; width:500px;">
16+
17+
<source src="F:\Diivergent.mp4" type="video/mp4">
18+
19+
20+
</video>
21+
22+
23+
</body>
24+
</html>

22 Progress bar and svg.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Audio Testing</title>
5+
</head>
6+
7+
<body>
8+
<img src ="C:\Users\Hp\Downloads\MV5BMjA5NjQ2MTAzN15BMl5BanBnXkFtZTcwOTY4MjIwNQ@@._V1_.jpg" height="100">
9+
<ol>
10+
<li> HTML <progress min="0" max="100" value="70"> </progress>
11+
<li> CSS <progress min="0" max="100" value="25"> </progress>
12+
<li> JAVA <progress min="0" max="100" value="67"> </progress>
13+
</ol>
14+
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)