Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> body { width: 100%; } h2 { color: #4287f5; text-align: center; } li { list-style-type: none; padding: 15px; color: #ffffff; } li:nth-child(odd) { background-color: #4287f5; cursor: grab; width: 50%; } li:nth-child(even) { background-color: #b8bcc2; cursor: pointer; width: 50%; } </style> </head> <body> <h2>W3 docs</h2> <div>Un site Web d’information des développeurs, avec des tutoriels et des références relatives au développement web..</div> <ul> <li>Les livres</li> <li>Questionnaires</li> <li>Snippets</li> <li>Les outils</li> <li>Fonctions de chaînes</li> </ul> </body> </html>