Advertisement
Guest User

exemple.html

a guest
Sep 1st, 2022
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.84 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="fr-FR">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Mon site web</title>
  6. <style type="text/css" media="all">
  7.     /* surcharge de styles existants et ajouts */
  8.     a:link{text-decoration:none;color:#134A81;}
  9.     a:active{text-decoration:none;color:#666;}
  10.     a:visited{text-decoration:none;color:#666;}
  11.     a:hover{text-decoration:none;color:#176dc3;}
  12.     body {
  13.         font-family: Helvetica,Verdana,Arial,sans-serif;
  14.         font-size: 1.1rem;
  15.     }
  16.  
  17. </style>
  18. </head>
  19. <body>
  20.     <header id="masthead">
  21.         Mon site
  22.     </header>
  23.     <div id="contenu">
  24.         <h1>Titre de mon site</h1>
  25.         <h2>Sous titre de mon site</h1>
  26.         <p>Paragraphe</p>
  27.         <p>Paragraphe</p>
  28.         <p><strong>Paragraphe en gras</strong></p>
  29.         <p>Paragraphe <img src="image.jpg" alt="chat"></p>
  30.         <p>Visite le <a href="https://martouf.ch">site de Martouf</>.</p>
  31.     </div>
  32. </body>
  33. </html>
Tags: html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement