Skip to content

Instantly share code, notes, and snippets.

@lequinharay
Created November 11, 2013 05:45
Show Gist options
  • Select an option

  • Save lequinharay/7408472 to your computer and use it in GitHub Desktop.

Select an option

Save lequinharay/7408472 to your computer and use it in GitHub Desktop.
証明写真をコンビニでL版プリントするときのための簡単HTML
<html>
<head>
<meta charset="utf-8">
<title>証明写真</title>
<style type="text/css" media="screen">
table {
width: 127mm;
height: 89mm;
background-color: #EEE;
}
img {
width: 30mm;
height: 40mm;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td><img src="face.png"></td>
<td><img src="face.png"></td>
<td><img src="face.png"></td>
</tr>
<tr>
<td><img src="face.png"></td>
<td><img src="face.png"></td>
<td><img src="face.png"></td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment