-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlreview.php
More file actions
41 lines (34 loc) · 747 Bytes
/
htmlreview.php
File metadata and controls
41 lines (34 loc) · 747 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
<html>
<title> Gene </title>
<body>
<?php include("index.php");
?>
<center> HTML Review </center> <br>
<hr align="center" width="80%"> <br> <!--Underline-->
<font color="blue" size="14" face="Times"> I am colorful.</font> <br> <br>
<!--Arial, Times, Verdana, Serifs, Courier New-->
<b><u><i> Good day </i> </u> </b> <br>
<h1> hello </h1> <br>
<h2> hello </h2> <br>
<h3> hello </h3> <br>
<h4> hello </h4> <br>
<h5> hello </h5> <br>
<table align="center" width="70" border="1">
<tr>
<th> column1 </th> <!--th is title header -->
<th> column2 </th>
<th> column3 </th>
</tr>
<tr>
<td> 1 </td> <!--td is title division -->
<td> 2 </td>
<td> 3 </td>
</tr>
<tr>
<td> 4 </td>
<td> 5 </td>
<td> 6 </td>
</tr>
</table>
</body>
</html>