mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-20 18:10:52 +00:00
37 lines
708 B
HTML
37 lines
708 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<link
|
||
|
href="https://fonts.googleapis.com/css?family=Open+Sans"
|
||
|
rel="stylesheet"
|
||
|
/>
|
||
|
</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>Enjoy this incredible achievement with us! 😊</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;
|
||
|
}
|
||
|
</style>
|
||
|
</html>
|