This commit is contained in:
Emmanuel Srivastava
2024-11-27 12:00:08 +01:00
parent 8271791c6d
commit 31805e6d3d
2 changed files with 113 additions and 0 deletions

29
DEV.1.2/tp1/ex3.html Normal file
View File

@@ -0,0 +1,29 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Liste de liens</title>
</head>
<body>
<h1> srivastava-tiamzon <strong>emmanuel</strong></h1>
<p lang="fr">Voici ma liste de liens !</p>
<ul>
<li><a href="https://grond.iut-fbleau.fr/" target="_blank">L'endroit mondial de l'IUT</a></li>
<li><a href="https://www.youtube.com/@manu0st319" target="_blank">Une chaîne youtube de qualité</a></li>
</ul>
<ol>
<li><a href="https://www.toptal.com/designers/htmlarrows/punctuation/" target="_blank">La ponctuation en HTML</a></li>
<li><a href="https://www.bible.com/fr/bible/504/MAT.5.BCC1923" target="_blank">Un passage important</li>
</ol>
<dl>
<li><a href="https://www.programiz.com/c-programming/online-compiler/" target="_blank">Compiler en C sans soucis</a></li>
<li><a href="https://www.programiz.com/python-programming/online-compiler/" target="_blank">Compiler en python sans soucis</a></li>
</dl>
</body>
</html>

84
DEV.1.2/tp1/ex4.html Normal file
View File

@@ -0,0 +1,84 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page structurant un contenu csv</title>
</head>
<body>
<table>
<tr>
<th>Planète</th>
<th>Distance moyenne (UA)</th>
<th>Exentricité</th>
<th>Inclinaison (°)</th>
<th>Période de révolution (an)</th>
</tr>
<tr>
<td>Venus</td>
<td>0,72333199</td>
<td>0,007</td>
<td>3,4</td>
<td>0,615</td>
</tr>
<tr>
<td>Jupiter</td>
<td>5,20336301</td>
<td>0,049</td>
<td>1,3</td>
<td>11,862</td>
</tr>
<tr>
<td>Mars</td>
<td>1,52366231</td>
<td>0,094</td>
<td>1,9</td>
<td>1,881</td>
</tr>
<tr>
<td>Saturne</td>
<td>9,6</td>
<td>0,057</td>
<td>2,5</td>
<td>29,452</td>
</tr>
<tr>
<td>Mercure</td>
<td>0,38709893</td>
<td>0,205</td>
<td>7</td>
<td>0,241</td>
</tr>
<tr>
<td>Neptune</td>
<td>4495,1</td>
<td>1,8</td>
<td>28,3</td>
<td>59,8</td>
</tr>
<tr>
<td>Terre</td>
<td>1</td>
<td>0,017</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<td>Uranus</td>
<td>2872,5</td>
<td>0,8</td>
<td>97,8</td>
<td>30,589</td>
</tr>
</table>
</body>
</html>