16 lines
514 B
JavaScript
16 lines
514 B
JavaScript
function Head()
|
|
{
|
|
return (
|
|
<head>
|
|
<meta charset="utf-8"></meta>
|
|
<link href="./css/header.css" rel="stylesheet"></link>
|
|
<title>BEST PONG EVER</title>
|
|
{/* <script src="./script/login.js"></script> */}
|
|
<link rel="preconnect" href="https://fonts.googleapis.com"></link>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin></link>
|
|
<link href="https://fonts.googleapis.com/css2?family=Rubik+Iso&display=swap" rel="stylesheet"></link>
|
|
</head>
|
|
);
|
|
}
|
|
|
|
export default Head; |