| 12345678910111213 |
- <?php function generateHeader($title, $description, $keywords) { ?><!DOCTYPE html5>
- <html>
- <head>
- <link href="favicon.png" type="image/png" rel="icon" />
- <link href="style.css" rel="stylesheet" />
- <link href="https://fonts.googleapis.com/css?family=Rubik+Mono+One&display=swap" rel="stylesheet"/>
- <link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet"/>
- <title><?php echo $title; ?></title>
- <meta name="description" content="<?php echo $description;?>" />
- <meta name="keywords" content="<?php echo $keywords;?>" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
- </head>
- <body><?php } ?>
|