View html-base-etape-4.html
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
View html-base-etape-3.html
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
View html-base-etape-2.html
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
View html-base-etape-1.html
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
View gist:543a191e4ed9a7d3ecd75049c04b73bb
<!-- SFA : Ajouter titre principal --> | |
<p>Je suis un paragraphe</p> | |
<h2>Je suis un titre de niveau 2</h2> |
View hello.php
<?php | |
/** | |
* @package Hello_Dolly | |
* @version 1.6 | |
*/ | |
/* | |
Plugin Name: Hello Dolly | |
Plugin URI: http://wordpress.org/plugins/hello-dolly/ | |
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page. | |
Author: Matt Mullenweg |
View dabblet.css
body { | |
margin : 0; | |
padding : 0; | |
font-size : 1.5em; | |
background-color: black; | |
} | |
a, a:visited { | |
color : #45B29D; | |
text-decoration : none; |
View meter-villes.js
var villes = [ | |
"Porrentruy, CH", | |
"Delémont, CH", | |
"Lausanne, CH", | |
"Genève, CH", | |
"Sion, CH", | |
"Neuchâtel, CH", | |
"Fribourg, CH", | |
"Berne, CH", | |
"Zurich, CH", |
View httpd-vhosts.conf
NameVirtualHost * | |
<VirtualHost *> | |
DocumentRoot "C:\xampp\htdocs" | |
ServerName localhost | |
</VirtualHost> | |
<VirtualHost *> | |
DocumentRoot "C:\mes-sites\yoda-shop\www" | |
ServerName yoda-shop.local | |