mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
22 lines
287 B
Text
22 lines
287 B
Text
<html>
|
|
|
|
<body bgcolor="#212127">
|
|
|
|
<head>
|
|
<title>All questions</title>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
body {
|
|
font: normal 14px Verdana;
|
|
color: #999999;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<% for (var i = 0; i < d.length; i++) { %>
|
|
<%= d[i] %>
|
|
</br>
|
|
<% } %>
|
|
|
|
</body>
|
|
</html>
|