Skip to content

Instantly share code, notes, and snippets.

@zorky
Created April 1, 2025 16:19
Show Gist options
  • Save zorky/b60732fb6fa555debb6f6559e8eb63a0 to your computer and use it in GitHub Desktop.
Save zorky/b60732fb6fa555debb6f6559e8eb63a0 to your computer and use it in GitHub Desktop.
HTML 4 clock
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Site en HTML 4</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
body { background-color: #f0f0f0; }
</style>
</head>
<body>
<table border="1" width="100%">
<tr bgcolor="blue">
<td align="center"><font color="white">Bienvenue sur mon site</font></td>
</tr>
<tr>
<td>
<p><b>HTML 4 est cool !</b></p>
<marquee>Regarde ce texte défiler 😎</marquee>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment