-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (78 loc) · 2.51 KB
/
index.html
File metadata and controls
80 lines (78 loc) · 2.51 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello, Deno</title>
<link rel="preload" href="https://demo-styles.deno.deno.net/fonts/Moranga-Regular.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="https://demo-styles.deno.deno.net/fonts/Moranga-Medium.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="https://demo-styles.deno.deno.net/fonts/Recursive_Variable.woff2" as="font" type="font/woff2" crossorigin />
<link rel="stylesheet" href="https://demo-styles.deno.deno.net/styles.css">
<style>
img {
display: inline-block;
vertical-align: middle;
}
</style>
</head>
<body>
<main>
<section>
<a href="https://deno.com/deploy">
</a>
<h1>
<p>
Hello, Deno!
</p>
</h1>
<p>
This little example is being served by <a href="https://deno.com/">Deno</a>.
You can run it locally or in porduction on <a href="https://deno.com/deploy">Deno Deploy</a> or other hosting platforms.
</p>
<ul>
<li>Run it locally with<code>deno task dev</code></li>
<li>Deploy it to <a href="https://deno.com/deploy">Deno Deploy</a> via the CLI by running<code>deno deploy</code></li>
<li>Run it locally and share it publically by running <code>deno deploy --connected</code></li>
</ul>
</section>
<hr>
<section>
<h2>What's next?</h2>
<p>
You can clone this example and deploy it to Deno Deploy in just a few clicks
<a href="https://app.deno.com/new?clone=https://github.com/denoland/examples&path=hello-world"><img src="https://deno.com/button" alt="Deploy on Deno"/></a>
</p>
<ul>
<li>
<a href="https://docs.deno.com/examples">More examples in the Deno Docs</a>
</li>
<li>
<a href="https://deno.com/deploy">Deno Deploy Early Access</a>
</li>
</ul>
</section>
</main>
<hr>
<footer>
<section>
<ul class="flex-btwn">
<li>
<a href="https://deno.com">BlueSky</a>
</li>
<li>
<a href="https://deno.com">Twitter</a>
</li>
<li>
<a href="https://deno.com">YouTube</a>
</li>
<li>
<a href="https://deno.com">Newsletter</a>
</li>
<li>
<a href="https://deno.com">Deno</a>
</li>
</ul>
</section>
</footer>
</body>
</html>