Soporte para Infobae añadido

This commit is contained in:
2021-07-16 21:09:07 -03:00
parent 00ff3b2ad9
commit e60588e577
8 changed files with 152 additions and 4 deletions

31
test-page.php Executable file
View File

@@ -0,0 +1,31 @@
<link rel="stylesheet" href="news.css">
<body>
<header>
<a href="index.php" class="name">
<img class="logo" src="./img/logo.svg">
<h1>AllNews.com</h1>
</a>
</header>
<div class="all">
<article>
<?php
require 'news_logic.php';
check_news();
?>
</article>
</div>
<div class="source">
Autor: <b><?php echo $author;?></b> | Pagina fuente: <b><?php echo $page_source;?></b>
</div>
</body>