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
32 lines
665 B
HTML
32 lines
665 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mi primera página web</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;
|
|
}
|
|
h1 {
|
|
color: #FFFF99;
|
|
}
|
|
h2 {
|
|
margin: 150px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Encabezado/título de nivel 1</h1>
|
|
<h2>Encabezado/título de nivel 2</h2>
|
|
<h3>Encabezado/título de nivel 3</h3>
|
|
<h4>Encabezado/título de nivel 4</h4>
|
|
<h5>Encabezado/título de nivel 5</h5>
|
|
<h6>Encabezado/título de nivel 6</h6>
|
|
</body>
|
|
</html>
|