Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save marcelosanto/34f2a0d4d2a396afa921223d34fde387 to your computer and use it in GitHub Desktop.

Select an option

Save marcelosanto/34f2a0d4d2a396afa921223d34fde387 to your computer and use it in GitHub Desktop.
index
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Escola da Nuvem</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f8ff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #555;
}
</style>
</head>
<body>
<div class="container">
<h1>Bem-vindo à Escola da Nuvem!</h1>
<p>Oie! Aqui você aprenderá tudo sobre tecnologia e computação na nuvem.</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment