Skip to content

Instantly share code, notes, and snippets.

@GugSaas
Last active December 27, 2022 19:09
Show Gist options
  • Save GugSaas/ae4fb3042896c64ce921c1370096c9bf to your computer and use it in GitHub Desktop.
Save GugSaas/ae4fb3042896c64ce921c1370096c9bf to your computer and use it in GitHub Desktop.
Code HTML to exemplify a home page of a Company
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
</head>
<body>
<h1>Essa é a página principal da Empresa Saas</h1>
<br>
<a href="?page=home.html">Home</a>
<br>
<a href="?page=serviços.html">Nossos Serviços</a>
<br>
<a href="?page=sobre.html">Sobre nós</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment