1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-01 19:20:13 -05:00

icons: HTML preview page.

This is a convenient thing to look at in a web browser, via a file://
URL, which lets me see all the icons together and check they match.
This commit is contained in:
Simon Tatham 2025-03-08 11:36:55 +00:00
parent 0ea6a31abd
commit 58b0fbfe3a

115
icons/preview.html Normal file
View File

@ -0,0 +1,115 @@
<html>
<head>
<title>Preview page for the PuTTY icons</title>
<style type="text/css">
/* Win95 background colour: traditional, and distinct from the icon
* palette */
body { color: white; background: #007878; }
table, tr, td, th {
border-collapse: collapse;
border: 1px solid;
}
td, th {
padding: 0.5em;
text-align: center;
}
</style>
</head>
<body>
<h1>Preview page for the PuTTY icons</h1>
<table>
<tr>
<td></td>
<th>PuTTY</th>
<th>PuTTY cfg</th>
<th>pterm</th>
<th>pterm cfg</th>
<th>PSCP/PSFTP</th>
<th>Pageant</th>
<th>PuTTYgen</th>
<th>Installer</th>
</tr>
<tr>
<th>16px mono</th>
<td><img src="putty-16-mono.png" /></td>
<td><img src="puttycfg-16-mono.png" /></td>
<td><img src="pterm-16-mono.png" /></td>
<td><img src="ptermcfg-16-mono.png" /></td>
<td><img src="pscp-16-mono.png" /></td>
<td><img src="pageant-16-mono.png" /></td>
<td><img src="puttygen-16-mono.png" /></td>
<td><img src="puttyins-16-mono.png" /></td>
</tr>
<tr>
<th>16px colour</th>
<td><img src="putty-16.png" /></td>
<td><img src="puttycfg-16.png" /></td>
<td><img src="pterm-16.png" /></td>
<td><img src="ptermcfg-16.png" /></td>
<td><img src="pscp-16.png" /></td>
<td><img src="pageant-16.png" /></td>
<td><img src="puttygen-16.png" /></td>
<td><img src="puttyins-16-true.png" /><img src="puttyins-16.png" /></td>
</tr>
<tr>
<th>32px mono</th>
<td><img src="putty-32-mono.png" /></td>
<td><img src="puttycfg-32-mono.png" /></td>
<td><img src="pterm-32-mono.png" /></td>
<td><img src="ptermcfg-32-mono.png" /></td>
<td><img src="pscp-32-mono.png" /></td>
<td><img src="pageant-32-mono.png" /></td>
<td><img src="puttygen-32-mono.png" /></td>
<td><img src="puttyins-32-mono.png" /></td>
</tr>
<tr>
<th>32px colour</th>
<td><img src="putty-32.png" /></td>
<td><img src="puttycfg-32.png" /></td>
<td><img src="pterm-32.png" /></td>
<td><img src="ptermcfg-32.png" /></td>
<td><img src="pscp-32.png" /></td>
<td><img src="pageant-32.png" /></td>
<td><img src="puttygen-32.png" /></td>
<td><img src="puttyins-32-true.png" /><img src="puttyins-32.png" /></td>
</tr>
<tr>
<th>48px mono</th>
<td><img src="putty-48-mono.png" /></td>
<td><img src="puttycfg-48-mono.png" /></td>
<td><img src="pterm-48-mono.png" /></td>
<td><img src="ptermcfg-48-mono.png" /></td>
<td><img src="pscp-48-mono.png" /></td>
<td><img src="pageant-48-mono.png" /></td>
<td><img src="puttygen-48-mono.png" /></td>
<td><img src="puttyins-48-mono.png" /></td>
</tr>
<tr>
<th>48px colour</th>
<td><img src="putty-48.png" /></td>
<td><img src="puttycfg-48.png" /></td>
<td><img src="pterm-48.png" /></td>
<td><img src="ptermcfg-48.png" /></td>
<td><img src="pscp-48.png" /></td>
<td><img src="pageant-48.png" /></td>
<td><img src="puttygen-48.png" /></td>
<td><img src="puttyins-48-true.png" /><img src="puttyins-48.png" /></td>
</tr>
<tr>
<th>SVG</th>
<td><img src="putty.svg" width="128" height="128" /></td>
<td><img src="puttycfg.svg" width="128" height="128" /></td>
<td><img src="pterm.svg" width="128" height="128" /></td>
<td><img src="ptermcfg.svg" width="128" height="128" /></td>
<td><img src="pscp.svg" width="128" height="128" /></td>
<td><img src="pageant.svg" width="128" height="128" /></td>
<td><img src="puttygen.svg" width="128" height="128" /></td>
<td><img src="puttyins.svg" width="128" height="128" /></td>
</tr>
</table>
</body>
</html>