Skip to main content

Etiquetas

* Pagina Web de las etiquetas HTML.

allthetags


* index.html

tip
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ETIQUETAS HTML</title>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<div class="detalles">
<details>
<summary>NAME:</summary>
<div>Juan Marin</div>
</details>
<details>
<summary>USER:</summary>
<div>juamaya</div>
</details>
<details>
<summary>EMAIL:</summary>
<div>correo@gmail.com</div>
</details>
</div>

<script src="./index.js"></script>
</body>
</html>

* style.css

tip
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.detalles {
background-color: rgb(64, 0, 255);
margin: 20px;
padding: 10px;
font-size: 1.5rem;
}

details {
border: 3px solid red;
margin: 5px;
padding: 10px;
cursor: pointer;
}

* index.js

tip