27 lines
552 B
HTML
27 lines
552 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>timestamp tool</title>
|
|
</head>
|
|
<body>
|
|
<input type="datetime-local" id="timestamp" name="timestamp">
|
|
<select name="timezone">
|
|
</select>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>syntax</th>
|
|
<th>result</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<script async src="script.js"></script>
|
|
</body>
|
|
</html> |