шифровка из центра ...
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
body{
font-weight: 600;
}
</style>
</head>
<body>
<script>
function fn(a, d) {
for (var c = "", b = 0; b < a * d; b++) c += b % 2 ^ (a % 2 || b % (2 * a) < a) ? "." : "#", (b + 1) % a || (c += "<br>");
return c
};
for (var i=8; i<13; i++) {
document.write("<h4>"+[i,i-7]+"</h4><br>"+fn(i,i-7)+"<br>")
}
</script>
</body>
</html>