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
feat(ch 3): added
This commit is contained in:
31
Unidad_03_HTML/HTML/008-ejemplo-elemento-headings.html
Normal file
31
Unidad_03_HTML/HTML/008-ejemplo-elemento-headings.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user