cours-snt/nsi/web_html/index.html
2022-10-25 14:33:52 +02:00

31 lines
1.3 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<title>Le titre de la fenêtre</title>
<!-- La ligne suivante demande au navigateur de télécharger une feuille de style au format CSS nommée mon_style.css -->
<link rel="stylesheet" type="text/css" href="mon_style.css" />
</head>
<body>
<!-- Écrivez le contenu de votre page au format HTML ici -->
<h1>Vivre les camemberts normands</h1>
<p id="paragraphe" >Merci davoir lu cette magnifique page web…</p>
<button onclick="this.innerText = Date()">Quelle heure est il ?</button>
<!-- Voici comment faire un lien : -->
<a href="https://google.fr">Ceci est un lien vers la recherche de Google</a>
<!-- Voici comment ajouter une image : -->
<!-- width est la largeur, height est la hauteur -->
<!-- Mettre que height ou que width permet de garder les proportions de l'image -->
<img width="200px" height="100px" src="https://lechariotafromages.fr/665-large_default/camembert-de-normandie.jpg" />
<!-- Mettez bien votre nom ici -->
<footer>Page créée par Jaune Attend pour le cours de SNT au lycée Buissonnier</footer>
<!-- La ligne suivante exécute le javascript du fichier script.js -->
<script src="script.js"></script>
</body>
</html>