wasmer/examples/nginx/html/index.html
2018-12-06 20:36:19 -08:00

48 lines
958 B
HTML

<html>
<head>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
/>
<title>Nginx running with Wasmer</title>
</head>
<body>
<div class="main">
<h1>
You did it! Nginx is running using
<a href="https://wasmer.io"
><img class="wasmer-logo" src="./wasmer-logo.png"
/></a>
</h1>
<p>
Celebrate this achievement with us at
<a href="https://github.com/wasmerio/wasmer"
>github.com/wasmerio/wasmer</a
>! 😊
</p>
</div>
</body>
<style>
body {
font-family: "Open Sans", sans-serif;
}
h1 {
font-weight: 600;
}
.main {
margin: 0 auto;
max-width: 600px;
padding: 10px;
}
.wasmer-logo {
width: 200px;
}
a {
text-decoration: none;
font-weight: 500;
color: #533ac9;
}
</style>
</html>