This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<! DOCTYPE html> | |
< html lang = " en " > | |
< tête > | |
< meta charset = " UTF-8 " > | |
< title > Attrapez-les tous! </ title > | |
< link rel = " stylesheet " href = " style.css " type = " text / css " > | |
</ head > | |
< body > | |
< section > | |
< img class = " hover-effect " src = " http://images.innoveduc.fr/integration_parcours/css/css_selectors_props/hobbit-house.jpg " alt = " Hobbit house " > |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
krez@DESKTOP-BGVA5DU:~$ ls | |
krez@DESKTOP-BGVA5DU:~$ pwd | |
/home/krez | |
krez@DESKTOP-BGVA5DU:~$ cd Images | |
-bash: cd: Images: No such file or directory | |
krez@DESKTOP-BGVA5DU:~$ pwd | |
/home/krez | |
krez@DESKTOP-BGVA5DU:~$ cd Images | |
-bash: cd: Images: No such file or directory | |
krez@DESKTOP-BGVA5DU:~$ ls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir real fictional inhabited | |
cd real | |
mkdir telluric gas-giants dwarf-planets | |
mv ../mercury.jpeg ../mars.jpeg ../venus.jpeg ../earth.jpeg telluric/ | |
mv ../jupiter.jpeg ../saturn.jpeg ../uranus.jpeg ../neptune.jpeg gas-giants/ | |
mv ../arrakis.jpeg ../coruscant.jpeg ../cybertron.jpeg ../pluto.jpeg dwarf-planets/ | |
cd dwarf-planets/ | |
mv arrakis.jpeg coruscant.jpeg cybertron.jpeg ../../fictional/ | |
mv ../../real/telluric/earth.jpeg ../../inhabited/ | |
mv ../../fictional/arrakis.jpeg ../../fictional/coruscant.jpeg ../../fictional/cybertron.jpeg ../../inhabited/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* responsive desktop*/ | |
@media screen and (min-width: 961px) { | |
body{ | |
margin: 0 auto; | |
width: 100%; | |
} | |
ul{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? php | |
$message1 = "0@sn9sirppa@#?ia'jgtvryko1"; | |
$message2 = "q8e?wsellecif@#?sel@#?setuotpazdsy0*b9+mw@x1vj"; | |
$message3 = "aopi?sgnirts@#?sedhtg+p9l!"; | |
$number1 = strlen($message1) / 2; | |
$number2 = strlen($message2) / 2; | |
$number3 = strlen($message3) / 2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_time_limit(5); | |
$movieIndiana = [ | |
'Indiana Jones et le Royaume du Crâne de Cristal' => ['broly', 'goku','vegeta'], | |
'Indiana Jones et la Dernière Croisade' => ['bulma','picolo','trunks'], | |
'Indiana Jones et le Temple maudit' => ['yamcha','krilin','sangohan'], | |
]; | |
foreach ($movieIndiana as $movie=>$actors){ | |
echo "Dans le film $movie,".' '; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_time_limit(5); | |
$weapons = ['fists', 'whip', 'gun']; | |
$opponentWeapon = $weapons[rand(0,2)]; // Cela permet de choisir une arme de manière aléatoire. | |
// TODO | |
$indyWeapon = ''; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function writeSecretSentence(string $name1, string $name2) : string | |
{ | |
$phrasing = $name1 . " s'incline face à " . $name2; | |
return $phrasing; | |
} | |
$phrasing = writeSecretSentence('dog','moon'); | |
echo $phrasing; |
OlderNewer