Skip to content

Instantly share code, notes, and snippets.

View javier-henao's full-sized avatar
:octocat:
Studying

Javier Henao javier-henao

:octocat:
Studying
View GitHub Profile
@Klerith
Klerith / app.html
Created November 22, 2022 19:07
Lista de tareas - Vanilla JavaScript
<section class="todoapp">
<header class="header">
<h1>Tareas</h1>
<input id="new-todo-input" class="new-todo" placeholder="¿Qué necesita ser hecho?" autofocus>
</header>
<!-- This section should be hidden by default and shown when there are todos -->
<section class="main">
<input id="toggle-all" class="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
@jonmircha
jonmircha / para_comenzar.html
Last active April 7, 2025 19:12
Código para iniciar el Curso de CSS Grid de @jonmircha
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aprendiendo Grid CSS</title>
<style>
html {
box-sizing: border-box;