Skip to content

Instantly share code, notes, and snippets.

@irocho
irocho / taboas.html
Last active May 28, 2018 09:35
Lembrade: as táboas teñen ringleiras que levan datos
<table>
<tr>
<td> Antón</td> <td> Xurxo</td>
</tr>
<tr>
<td> María </td> <td>Laura</td>
</tr>
@irocho
irocho / listas.html
Last active May 25, 2018 09:42
listas numeradas ou non
<ul>
<li> George Clooney
<li> Humphrey Bogart
<li>Richard Gere
</ul>
<ol>
<li> George Clooney
<li> Humphrey Bogart
<li>Richard Gere
@irocho
irocho / ligazons.html
Last active May 25, 2018 09:43
Empregaremos <a> para enlazar páxinas
<a href="https://irocho.wordpress.com" > A nosa estupenda web </a>
@irocho
irocho / imaxe.html
Last active May 25, 2018 09:43
img é a etiqueta para as imaxes, cambiade o tamaño a gusto
<img src="debuxo.png" height="100" width="100" border="1" >
@irocho
irocho / esquelete.html
Last active September 28, 2021 15:32
O mínimo que debe ter unha páxina web
<!DOCTYPE html>
<html lang="gl_ES">
<head>
<meta charset="UTF_8">
<title>Título da xanela</title>
</head>
<body>
<h1> Título en grandote </h1>
@irocho
irocho / css_chiquitin.css
Last active February 19, 2018 09:22
Primeiro css para analizar
body {
background-color: aliceblue; }
h1 {
text-align: center;}
p {
font-size: 14pt;
font-family: sans-serif;
color: green;}
@irocho
irocho / css_sinxelo.css
Last active February 19, 2018 09:17
Exempliño sinxelo
body {
font-family: "Times New Roman", serif;
background-color: #d8da3d; }
h1 {
text-align: center;
font-family: sans-serif; }
h2 {
text-align: right;}
p {
margin-left: 80px;
@irocho
irocho / gist10_if.ipynb
Created October 26, 2017 13:10
Condicionais con if
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@irocho
irocho / gist9_V-F.ipynb
Last active February 13, 2025 11:22
Mágoa que fale en inglés pero non hai quen o engane
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@irocho
irocho / gist3_var-concat.ipynb
Created September 18, 2017 17:37
Variables que gardan caracteres
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.