cours-snt/web/tp_site_web/page.html
2021-12-06 10:04:28 +01:00

40 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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>
<meta charset="utf8" />
<title>Le titre de la fenêtre</title>
<head>
<style>
/* Écrivez les règles de style ici */
p {
color: green; /* Texte en vert */
}
h2 {
text-decoration: underline; /* Texte souligné */
}
h1 {
text-align:center; /* Texte centré */
}
img {
display: block; /* Ces deux lignes permettent de centrer une image */
margin:auto;
}
</style>
</head>
<body>
<!-- Écrivez le contenu de votre page au format HTML ici -->
<h1>Vivre les camemberts normands</h1>
<p>Merci de lavoir lue…</p>
<!-- Voici comment faire un lien : -->
<a href="https://google.fr">Ceci est un lien vers la rechreche 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>
</body>
</html>