Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@

# lapzdev.github.io
## Esto es una prueba
=========
# PÁGINA WEB INICIAL
## Temario
<img src="IMG-20260808-WA0004.jpg" alt="vasilio" width="100 " height="auto"
=========
<br>
<br>

<img src="IMG-20260808-WA0004.jpg" alt="vasilio" width="100 " height="auto" />

<a href="index .html">Enlace principal</a>
<br>

22 changes: 13 additions & 9 deletions index .html
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,27 @@
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Este es un curso de html" />

<meta http-equiv="X-UA-Compatible" content="IE=7,8,edge" />
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<meta property="og:title" content="Curso de HTML" />
<meta property="og:description" content="Este es un curso de html" />
<meta property="og:image" content="https://lapzdev.github.io/IMG-20260808-WA0003.jpg" />


<link rel="canonical" href="https://lapzdev.github.io/index.html" title="" type="" />
<!--este icono es para computadoras-->

<link rel="icon" href="IMG-20260808-WA0004.jpg" title="" type="" />
<!--este icono es para dispositivos móviles-->
<link rel="apple-touch-icon" href="IMG-20260808-WA0004.jpg" title="" type="" />
<style type="text/css" media="all">
h1{color:blue}
</style>
<!-- metaetiquetas para el color -->
<meta name="theme-color" content="#ff3400" />
<meta name="theme-color" content="#ff7400" />
<title>prueba</title>

</head>

<body>
<h1>CURSO DE HTML</h1>
<h1 style="color: yellowgreen;">CURSO DE HTML</h1>
<h2 id="inicio">Listado del curso</h2>
<ul>
<li><a href="#etiquetas-basicas">Etiquetas basicas</a></li><br />
Expand All @@ -39,6 +38,7 @@ <h2 id="inicio">Listado del curso</h2>
<li><a href="#formularios">Formularios</a></li><br />
<li><a href="#data-atribute">Data atributes</a></li><br />
<li><a href="#meta-seo">Metaetiquetas para SEO</a></li><br />
<li><a href="#css">Curso CSS</a></li><br />
<li><a href=""></a></li><br />
<li><a href=""></a></li><br />
<li><a href=""></a></li><br />
Expand Down Expand Up @@ -210,7 +210,7 @@ <h2 id="audio-video">Audio y video</h2>
<hr />
<h2 id="formularios">Formularios</h2>
<h3>Elementos de formulario</h3>
<input type="text" name="texto" id="" value="" required /><br /><br />
<input type="text" name="texto" id="" value=un"" required /><br /><br />
<input type="file" name="" id="" value="" /><br /><br />
<input type="file" multiple name="" id="" value="" /><br /><br />

Expand Down Expand Up @@ -307,8 +307,12 @@ <h2 id="data-atribute">Data atribute</h2><br />

</ul><br><br>
<h2 id="meta-seo">Metaetiquetas para seo</h2>
<h2 id="css" class="css-curso">CURSO CSS</h2>
<div id="box">
ffjffjfjfjfjfxj
</div>
<script type="text/javascript" src='prog.js'>

</script>

</html>
</html>
Empty file removed merge.md
Empty file.
2 changes: 0 additions & 2 deletions notas-marge.md

This file was deleted.

Empty file removed notasnuevas.md
Empty file.
4 changes: 3 additions & 1 deletion prog.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
let a=9.8
console.log(a)
console.log('Esta es una prueba')
alert('Prueba con alert')
alert('Prueba con alert')
let b = 'esta es otra version'
console.log(b)
21 changes: 19 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
/**Una regla css consta de dos partes:
1) el selector
2) el bloque de declaraciones
atributo:valor*/
html {
scroll-behavior: smooth;;
}
body {
background-color: aqua;

background-color:#f005;
margin: 0;
}
a {
margin: 3px;
}
h2:target{color:red};
h2:target{color: #005;}
.css-curso {color:#00f;}
/* */
h1{color: orangered; }
#box{color: #f50;
border: 3px;
border-color: blue;
width: 200px;
height: 200px;
}
h2{color: #f00;}
/* */
Loading