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
27 lines
604 B
HTML
27 lines
604 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">1</div>
|
|
<div class="box box2">2</div>
|
|
<div class="box box3">3</div>
|
|
<div class="box box4">4</div>
|
|
<div class="box box5">5</div>
|
|
<div class="box box6">6</div>
|
|
<div class="box box7">7</div>
|
|
<div class="box box8">8</div>
|
|
<div class="box box9">9</div>
|
|
<div class="box box10">10</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |