-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (107 loc) · 3.34 KB
/
index.html
File metadata and controls
109 lines (107 loc) · 3.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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>
<ul>
<li>
Ajay added this line....
</li>
<li>
Alok added this line....
</li>
<li>
Sujit added this line....
</li>
</ul>
</section>
<section>
<h2>What's Deno?</h2>
<p>
Deno is a simple, modern, and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.
Deno is created by Ryan Dahl, the original creator of Node.js, who designed Deno to address some of the shortcomings he perceived in Node.js.
</p>
<ul>
<li>
<a href="https://deno.com/">Deno Homepage</a>
</li>
<li>
<a href="https://docs.deno.com/">Deno Documentation</a>
</li>
<li>
<a href="https://deno.com/deploy">Deno Deploy</a>
</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>