mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-28 18:45:49 -05:00
29 lines
664 B
HTML
29 lines
664 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en"> <!-- Set this to the main language of your site -->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Whoops! Something went wrong</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
.main {
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #585858;
|
|
text-align: center;
|
|
font-family: "helvetica neue",arial,sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
<div class="main">
|
|
<h2>Greetings!</h2>
|
|
<h2>We are working on scratchx.org and will be launching soon</h2>
|
|
<br>
|
|
<img src="http://wiki.scratch.mit.edu/w/images/Nano3.png" style="margin:20px;padding: 10px;">
|
|
<p>
|
|
Stay tuned for further announcements!
|
|
</p>
|
|
</div>
|
|
</html>
|