0

I have the following code, and the tutorial I followed says that the table should show up, but it doesn't. All that shows up is the text inside the <h1> and <h4> tags, and the external CSS file is also not taking effect. The code I have is as follows:

<?php
include_once('connection.php');
$query="select * from myanimelist";
$result=mysql_query($query);
?>

<!DOCTYPE html> 
<html>
<head>
<link rel="stylesheet" href="styles-2.css">
</head>
<body>
<h1> Callum Stewart's Amazing Website. </h1>
<h4> The Home of Entertainment. </h4>

<table align="center" border="1px" style="width: 300px" color="black">
    <tr>
    <th>Anime Database</th>
    </tr>
    <tr>
    <th>Title</th>
    <th>MediaType</th>
    <th>Rating</th>
    <th>NumOfEpisodes</th>
    <th>NumOfVolumes</th>
    </tr>
</table>
</body> 
</html>
user83024
  • 1
  • 3

0 Answers0