-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMake A Table.html
More file actions
47 lines (39 loc) · 905 Bytes
/
Make A Table.html
File metadata and controls
47 lines (39 loc) · 905 Bytes
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
<!--Basic Html Practice-->
<!--Write By Shafiul Kayem-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Make a Table
</title>
</head>
<body bgcolor = 'cyan'>
<table Align = 'Center' border = '1'>
<tr>
<th> Name </th>
<th> Blood </th>
<th> Phone </th>
<th> Email </th>
<th> Village </th>
<th> Hometown </th>
<th> City </th>
<th> Country </th>
</tr>
<tr align = 'center'>
<td> Shafiul Kayem </td>
<td> (A+) </td>
<td> 01852404796 </td>
<td> Shafiulkayem@gmail.com </td>
<td> Khanmohona </td>
<td> Patiya </td>
<td> Chittagong </td>
<td> Bangladesh </td>
</tr>
</table>
<a
href= "www.facebook.com/shafiulkayem" title="Shafiul Kayem's FB Profile"> Visit Facebook
</a>
</body>
</html>