Skip to content

Instantly share code, notes, and snippets.

@mjameswh
Created May 3, 2019 19:33
Show Gist options
  • Save mjameswh/9721aa0f29997c05088c44ce5960e9a1 to your computer and use it in GitHub Desktop.
Save mjameswh/9721aa0f29997c05088c44ce5960e9a1 to your computer and use it in GitHub Desktop.
Un exemple de page HTML très simple
<html>
<head>
<title>Ma première page web</title>
</head>
<body>
<h1>Ma première page web</h1>
<p>
Allo!
</p>
<p>
Ceci est ma <strong>première</strong> page web. Je peux racconter une <em>histoire</em> ici.
<img src="https://www.tonlivretonhistoire.ca/static/assets/img/livre-home-tlth.png" style="float: left; width: 100px;">
</p>
<p>
Je peux aussi mettre un lien pour aller sur le site de <a href="https://www.lego.com/fr-ca/">Lego</a>.
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment