Skip to content

Instantly share code, notes, and snippets.

View angelolev's full-sized avatar
🎯
Focusing

Angelo Leva angelolev

🎯
Focusing
View GitHub Profile
@angelolev
angelolev / console-logs.js
Last active September 21, 2021 01:02
Mejorando tus console logs
const miNombre = 'Angelo Leva'
//Para ver el valor de un dato,
//normalmente hacemos esto
console.log(miNombre)
//Resultado 'Angelo Leva'
//En vez de hacer esto, hagamos:
//console.log('miNombre: ', miNombre)
@angelolev
angelolev / curso-html.html
Created January 20, 2022 02:30
Codigo del proyecto final del curso de HTML - Coding Latam
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mis clases</title>
</head>
<body>
<header>
@angelolev
angelolev / lifehack.css
Last active April 20, 2022 04:01
Script to see HTML elements containers and properties
<style>
html * {
background: rgba(255, 0, 0, .1);
box-shadow: 0 0 0 1px red;
}
</style>
@angelolev
angelolev / index.html
Created September 30, 2022 23:15
HTML capture attribute
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="style.css">
</head>
<body>