11 lines
159 B
PHP
Executable File
11 lines
159 B
PHP
Executable File
<?php
|
|
|
|
$head = <<<EOL
|
|
<head>
|
|
<title>E-Commerce</title>
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
</head>
|
|
EOL;
|
|
|
|
echo $head;
|