-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
38 lines (35 loc) · 1.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>PHP Playground</title>
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<meta name="description" content="The Playground let you to execute basic PHP code in real time using WebAssembly technology."/>
<link rel="canonical" href="https://php-play.dev">
<meta property="og:url" content="https://php-play.dev" />
<meta property="og:type" content="website" />
<meta property="og:title" content="PHP Playground" />
<meta property="og:description" content="The Playground let you to execute basic PHP code in real time." />
<meta property="og:site_name" content="PHP Playground" />
<meta property="og:image" content="https://php-play.dev/ogp.png" />
<meta name=”twitter:card” content="summary_large_image" />
<meta name=”twitter:creator” content="@glassmonekey" />
<meta name=”twitter:title” content="PHP Playground" />
<meta name=”twitter:description” content="The Playground let you to execute basic PHP code in real time." />
<meta name=”twitter:image” content="https://php-play.dev/ogp.png" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5PK4804V8H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5PK4804V8H');
</script>
</head>
<body>
<div id="app"></div>
</body>
<script type="module" src="/src/index.tsx"></script>
</html>