Feat: ajoute les premiers exercices sur le HTML

This commit is contained in:
2022-07-29 18:54:52 +02:00
parent 31c8b82895
commit 0006d81130
18 changed files with 317 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="Author" content="">
<title>Images</title>
</head>
<body>
<h1>Logos</h1>
<h2>Langages du web</h2>
<p>
html <img src="./HTML5_logo.png" alt="HTML5" height=100>
</p>
<p>
CSS <img src="./CSS3_logo.png" alt="CSS" height=100>
</p>
<p>
Javascript <img src="./JavaScript_logo.png" alt="Javascript" height=100>
</p>
</body>
</html>