Skip to content

Instantly share code, notes, and snippets.

View Armand72's full-sized avatar

Armand Meunier Armand72

View GitHub Profile
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href = "style.css"/>
<title>find the precious</title>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href = "style.css"/>
<title>find the precious</title>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href = "style.css"/>
<title>find the precious</title>
</head>
<body>
@Armand72
Armand72 / index.html
Last active September 3, 2019 14:01
box model
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Find the precious!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul id="navigation">
@Armand72
Armand72 / index.html
Created September 9, 2019 21:38
07 css: responsive design
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<title>Find the precious!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<title>Find the precious!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
@Armand72
Armand72 / linux
Last active September 10, 2019 16:32
armand@armand-ThinkPad-T440p:~$ pwd
/home/armand
armand@armand-ThinkPad-T440p:~$ cd AA
bash: cd: AA: Aucun fichier ou dossier de ce type
armand@armand-ThinkPad-T440p:~$
armand@armand-ThinkPad-T440p:~$ cd Wild_Code_School/
bash: cd: Wild_Code_School/: Aucun fichier ou dossier de ce type
armand@armand-ThinkPad-T440p:~$ cd Wild_Code_School/
bash: cd: Wild_Code_School/: Aucun fichier ou dossier de ce type
armand@armand-ThinkPad-T440p:~$ cd /Wild_Code_School
@Armand72
Armand72 / history
Last active September 10, 2019 21:09
armand@armand-ThinkPad-T440p:~/linuxquetes/quetes/shell/planets$ history
218 mkdir linuxquetes
219 cd linuxquetes
220 mkdir quetes
221 cd quetes
222 mkdir shell
223 cd shell
224 wget https://github.com/bhubr/bhubr.github.io/raw/master/wild/planets.zip
225 unzip planets.zip
226 mkdir real
armand@armand-ThinkPad-T440p:~$ nano bonjour.sh
armand@armand-ThinkPad-T440p:~$ ./bonjour.sh Armand
bonjour Armand
armand@armand-ThinkPad-T440p:~$
armand@armand-ThinkPad-T440p:~$ nano bonjour.sh
armand@armand-ThinkPad-T440p:~$ ./bonjour.sh Armand
bonjour Armand
armand@armand-ThinkPad-T440p:~$
#!/bin/bash
echo "bonjour $1"