From a2f6e985469a858e840ae62c3d12d9f90a759919 Mon Sep 17 00:00:00 2001 From: Vincent Guillet Date: Sat, 15 Mar 2025 15:26:02 +0100 Subject: [PATCH] Initial commit with existing project files --- README.md | 3 +- index.html | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 31 ++++++++++++++ 3 files changed, 150 insertions(+), 1 deletion(-) mode change 100644 => 100755 README.md create mode 100755 index.html create mode 100755 style.css diff --git a/README.md b/README.md old mode 100644 new mode 100755 index f7cefaf..a76492d --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# tp-web-statique-tableaux +# Tableaux +Exercice du cours web statique dans le cadre de ma formation CDA chez Human Booster \ No newline at end of file diff --git a/index.html b/index.html new file mode 100755 index 0000000..329b3be --- /dev/null +++ b/index.html @@ -0,0 +1,117 @@ + + + + + + Exercice + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MatiereEtudiantNote
Html/CssLuke17
Html/CssLeia12
Html/CssAnakin15
Html/CssObi-wan19
JavaLuke17
JavaLeia12
JavaAnakin15
JavaObi-wan19
AlgoLuke17
AlgoLeia12
AlgoAnakin15
AlgoObi-wan19
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EtudiantHtml/CssJavaAlgo
Luke171717
Leia121212
Anakin151515
Obi-wan191919
+ + diff --git a/style.css b/style.css new file mode 100755 index 0000000..8cb83a6 --- /dev/null +++ b/style.css @@ -0,0 +1,31 @@ +body { + font-family: Arial, sans-serif; + font-size: 14px; + font-weight: 400; +} + +table { + border-collapse: collapse; + width: 230px; + margin: 15px; +} + +th { + border: 1px solid salmon; + background-color: salmon; + font-weight: 700; + color: white; +} + +thead th { + background-color: lightcoral; + border-color: lightcoral; +} + +td { + border: 1px solid black; +} + + td, th { + padding: 5px 10px; +}