mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/LMSGI-2024-25.git
synced 2025-11-09 09:57:39 +01:00
23 lines
527 B
HTML
23 lines
527 B
HTML
<!doctype html>
|
|
<html lang="es">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FlexBox Tutorial</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="box box1">Uno 🦁</div>
|
|
<div class="box box2">Dos 😜</div>
|
|
<div class="box box3">Tres 😴</div>
|
|
<div class="box box4">Cuatro ⛱</div>
|
|
<div class="box box5">Cinco 🍕</div>
|
|
<div class="box box6">Seis 🍀</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |