forked from preactjs/preact-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 831 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="/favicon.ico">
<title>Preact</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
<meta name="color-scheme" content="dark light">
<meta name="theme-color" content="#673AB8">
<link rel="alternate" type="application/rss+xml" href="https://preactjs.com/feed.xml">
<link rel="alternate" type="application/atom+xml" href="https://preactjs.com/feed.atom">
<meta property="og:image" content="https://preactjs.com/app-icon.png">
<meta name="twitter:card" content="summary">
<link href="https://cdn.jsdelivr.net" rel="preconnect" crossorigin="anonymous">
</head>
<body class="banner">
<div id="app"></div>
<script type="module" src="./src/index.jsx" prerender></script>
</body>
</html>