21 lines
689 B
HTML
21 lines
689 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Lateinicus</title>
|
|
<meta
|
|
name="viewport"
|
|
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
|
|
/>
|
|
|
|
<link rel="stylesheet" href="./index.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
|
|
|
|
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
|
|
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="./index.tsx"></script>
|
|
</body>
|
|
</html>
|