mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
30 lines
624 B
HTML
30 lines
624 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Document</title>
|
||
|
<script type="application/ld+json">
|
||
|
{
|
||
|
"@context": "https://schema.org/",
|
||
|
"@type": "Recipe",
|
||
|
"name": "Party Coffee Cake",
|
||
|
"author": {
|
||
|
"@type": "Person",
|
||
|
"name": "Mary Stone"
|
||
|
},
|
||
|
"datePublished": "2018-03-10",
|
||
|
"description": "This coffee cake is awesome and perfect for parties.",
|
||
|
"prepTime": "PT20M"
|
||
|
}
|
||
|
</script>
|
||
|
<script>
|
||
|
|
||
|
|
||
|
alert("test" + "test");
|
||
|
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
</body>
|
||
|
</html>
|