HTML y CSS de las 3 paginas listos

This commit is contained in:
2021-05-19 18:51:38 -03:00
commit 5a25331dc9
9 changed files with 564 additions and 0 deletions

33
index.html Normal file
View File

@@ -0,0 +1,33 @@
<!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 id="title">HOME</title>
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="./normalize.css">
<script src="script.js"></script>
</head>
<body>
<header class="header-home">
<h1>Lorem ipsum dolor sit amet</h1>
</header>
<div class="flex-container">
<div>
<a href="./login.html">
<div class="big-button">
<h2>Log in</h2>
</div>
</a>
<a href="./register.html">
<div class="big-button">
<h2>Register</h2>
</div>
</a>
</div>
</div>
</body>
</html>