mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/LMSGI-2024-25.git
synced 2025-11-09 18:03:06 +01:00
26 lines
483 B
HTML
26 lines
483 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Marvel - Los vengadores</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<style type="text/css">
|
|
body {
|
|
margin: 50px;
|
|
padding: 0px;
|
|
background: #2372DE;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 11pt;
|
|
color: #FFFFFF;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Superhéroes de Marvel - Los vengadores</h1>
|
|
<ul>
|
|
<li>Thor</li>
|
|
<li>Hulk</li>
|
|
<li>Iron Man</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|