mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
29 lines
486 B
HTML
29 lines
486 B
HTML
<html>
|
|
<head>
|
|
<title>TinyGo - A Go Compiler For Small Places</title>
|
|
<style>
|
|
body {
|
|
background-color: rgb(4, 111, 143);
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
width: 299px;
|
|
height: 255px;
|
|
}
|
|
h1 {
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>TinyGo - A Go Compiler For Small Places</h1>
|
|
<img src="images/tinygo-logo.png">
|
|
</body>
|
|
</html>
|