header.php 789 B

1234567891011121314
  1. <?php function generateHeader($title, $description, $keywords) { ?><!DOCTYPE html5>
  2. <html>
  3. <head>
  4. <link href="img/favicon.png" type="image/png" rel="icon" />
  5. <link href="style.css" rel="stylesheet" />
  6. <link href="https://fonts.googleapis.com/css?family=Rubik+Mono+One&display=swap" rel="stylesheet"/>
  7. <link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet"/>
  8. <link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
  9. <title><?php echo $title; ?></title>
  10. <meta name="description" content="<?php echo $description;?>" />
  11. <meta name="keywords" content="<?php echo $keywords;?>" />
  12. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  13. </head>
  14. <body><?php } ?>