Last active
December 27, 2022 19:09
-
-
Save GugSaas/ae4fb3042896c64ce921c1370096c9bf to your computer and use it in GitHub Desktop.
Code HTML to exemplify a home page of a Company
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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