Skip to content

Instantly share code, notes, and snippets.

View furenku's full-sized avatar

furenku furenku

  • punksnotdev
  • Mexico
View GitHub Profile
@furenku
furenku / html.html
Last active March 3, 2018 19:49
html-semantico
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
@furenku
furenku / pos.css
Created March 10, 2018 20:13
posicionamiento CSS
* {
outline: 1px solid blue;
}
.contenedor {
/*m100*/
margin: 100px;
/*bgc#eee*/
@furenku
furenku / css-tradicional.css
Last active March 24, 2018 20:12
holygrail
body * {
/* db */
display: block;
/* bz */
box-sizing: border-box;
}
#main-menu li {
@furenku
furenku / index.html
Last active May 26, 2018 20:36
ejercicio maquetado
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- link -->
<link rel="stylesheet" href="css/style.css">
@furenku
furenku / App.js
Last active June 12, 2018 02:26
componente React
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function MiPrimerComponente( props ) {
return (
<h3>
{props.texto}
</h3>
)
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
const User = (props) => {
console.log(props);
return (
<div>
@furenku
furenku / arrayfilterinr.js
Created June 19, 2018 01:13
array filtering inside array
personas = [
{
nombre: "juan",
materias: [
{
id: "GEO001",
name: "geografia 1"
},
{
id: "BIO001",
@furenku
furenku / db.xml
Created June 23, 2018 23:49
ejemplo xml
<archivo>
<filename>
nombrearchivo.ext
</filename>
<tecnica>
texto de tecnica
</tecnica>
<precio>
666.66
</precio>
@furenku
furenku / index.php
Last active June 24, 2018 01:08
solgrid
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
@furenku
furenku / index.php
Created June 24, 2018 01:18
solgrid sin usar flexbox order
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">