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; +}