On this page
Deploy a static site
This tutorial will cover how to deploy a static site (no JavaScript) on Deno Deploy.
Step 1: Create the static site Jump to heading
mkdir static-site
cd static-site
touch index.html
Inside your index.html
, paste the following html:
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>Hello</h1>
<img src="image.png" alt="image" />
</body>
</html>