void append_page_header() {
webpage = F("");
webpage += F("
");
webpage += F("File MK-BlindControl "); // NOTE: 1em = 16px
webpage += F(" ");
webpage += F("MK-BlindControl "); webpage += String(ServerVersion) + " ";
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
void append_page_footer(){ // Saves repeating many lines of code for HTML page footers
////for coding footer see web sites
//////https://bit-calculator.com/bit-shift-calculator
//////https://lwp.interglacial.com/appf_01.htm
webpage += F("");
///2020
////// trade mark space
//webpage += "™"+String(char(byte(0x40>>1)))+String(char(byte(0x9a>>1)))+String(char(byte(0x8a>>1)))+String(char(byte(0x5a>>1)))+String(char(byte(0xa6>>1)));
//webpage += String(char((0xda>>1)))+String(char(byte(0xc2>>1)))+String(char(0xe4>>1))+String(char(0xe8>>1))+String(char(byte(0xd0>>1)));
//webpage += String(char(byte(0xde>>1)))+String(char(byte(0xea>>1)))+String(char(byte(0xe6>>1)))+String(char(0xca>>1));
///////// TM space M o u n
webpage += "™"+String(char(byte(0x40>>1)))+String(char(byte(0x9a>>1)))+String(char(byte(0xde>>1)))+String(char(byte(0xea>>1)))+String(char(byte(0xdc>>1)));
////// t a i n e
webpage += String(char((0xe8>>1)))+String(char(byte(0xc2>>1)))+String(char(0xd2>>1))+String(char(0xdc>>1))+String(char(byte(0x8a>>1)));
/////// a g l e -
webpage += String(char((0xc2>>1)))+String(char(byte(0xce>>1)))+String(char(0xd8>>1))+String(char(0xca>>1))+String(char(byte(0x5a>>1)));
///////// T e c h n
webpage += String(char((0xa8>>1)))+String(char(byte(0xca>>1)))+String(char(0xc6>>1))+String(char(0xd0>>1))+String(char(byte(0xdc>>1)));
////////// o l o g i
webpage += String(char((0xde>>1)))+String(char(byte(0xd8>>1)))+String(char(0xde>>1))+String(char(0xce>>1))+String(char(byte(0xd2>>1)));
////////// e s
webpage += String(char((0xca>>1)))+String(char(byte(0xe6>>1)));
//// //// space 2 0 2 2
webpage += String(char(byte(0x40>>1)))+String(char(byte(0x64>>1)))+String(char(byte(0x60>>1)))+String(char(byte(0x64>>1)))+String(char(0x64>>1))+" ";
webpage += F("");
}