https://simpleunderstood.blogspot.com/
| <!DOCTYPE html> | |
| <!-- | |
| To change this license header, choose License Headers in Project Properties. | |
| To change this template file, choose Tools | Templates | |
| and open the template in the editor. | |
| --> | |
| <html> | |
| <head> | |
| <title>Covid-19_Symptom_Checker</title> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| #header_name{ | |
| font-size: 50px; | |
| background: #fa8e2e; | |
| } | |
| #report{ | |
| width: 100%; | |
| height: 40px; | |
| background: moccasin; | |
| } | |
| #datasets{ | |
| width: 100%; | |
| height: 70px; | |
| background: moccasin; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="header_name">Covid-19 Symptom Checker</div> | |
| <form action="#" method="post" class="demoForm" id="demoForm"> | |
| <fieldset> | |
| <legend>Check Yourself Carefully to Save Yourself and Others</legend> | |
| <p>Select which and which symptoms \nyou are feeling at this time.</p> | |
| <p> | |
| <label><input type="checkbox" name="sports[]" value="Fever1" /> Fever</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Dry Cough2" /> Dry Cough</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Tiredness3" /> Tiredness</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Aches and Pains4" /> Aches and Pains</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Sore Throat5" />Sore Throat</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Diarrhoea6" /> Diarrhoea</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Cunjunctivitis7" /> Cunjunctivitis</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Dry Cough8" /> Dry Cough</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Headache9" /> Headache</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Loss of Taste or Smell10" /> Loss of Taste or Smell</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Skin Rash11" />Skin Rash</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Discoloration of Fingers or Toes12" /> Discoloration of Fingers or Toes</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Difficult Breathing13" /> Difficult Breathing</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Shortness of Breath14" /> Shortness of Breath</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Chest Pain/Pressure15" /> Chest Pain/Pressure</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Loss of Speech or Movement16" /> Loss of Speech or Movement</label><br> | |
| </p> | |
| </fieldset> | |
| </form> | |
| <div id="report"></div> | |
| <div id="datasets"> | |
| <p>Some useful help online: | |
| <a href="https://www.cdc.gov/coronavirus/2019-ncov/cases-updates/testing-in-us.html">Coronavirus Disease 2019 (COVID-19)</a><br> | |
| <a href="https://www.who.int/docs/default-source/coronaviruse/situation-reports/20200531-covid-19-sitrep-132.pdf?sfvrsn=d9c2eaef_2">Coronavirus disease (COVID-19) Situation Report–132(Download document)</a><br> | |
| <a href="https://multimedia.scmp.com/infographics/news/china/article/3047038/wuhan-virus/index.html">Coronavirus: the disease | |
| Covid-19 explained</a> | |
| </div> | |
| <script type="text/javascript" src="jquery.js"></script> | |
| <script type="text/javascript"> | |
| var ixi=0; | |
| var sports = document.forms['demoForm'].elements[ 'sports[]' ]; | |
| var x = document.getElementById("report"); | |
| var xx1=new Array(16); | |
| for (var i=0, len=sports.length; i<len; i++) { | |
| sports[i].onclick = doSomething; | |
| } | |
| function doSomething() { | |
| var xx = this.value; | |
| var xxx =""+xx[xx.length-1]; | |
| if((xx[xx.length-2])==='1') | |
| xxx="1"+xxx; | |
| if ( this.checked ) { | |
| ixi=ixi+1; | |
| //alert( this.value ); | |
| xx1[parseInt(xxx)]=xxx; | |
| doIt(ixi,xx1); | |
| } | |
| else{ | |
| ixi=ixi-1; | |
| xx1[parseInt(xxx)]="0"; | |
| doIt(ixi,xx1); | |
| } | |
| } | |
| function doIt(z, t){ | |
| if(z>5) | |
| if(!cont(t,"9")){ | |
| x.style.fontsize= "40px"; | |
| x.style.fontstyle= "bold"; | |
| x.style.color= "blue"; | |
| x.innerHTML ="May be you should go for test."; | |
| } | |
| else{ | |
| x.style.color= "red"; | |
| x.innerHTML ="You definitely should go for test."; | |
| } | |
| } | |
| function cont(z, t){ | |
| for(var h=0; h<z.length;h=h+1){ | |
| if(parseInt(z[h])>parseInt(t)) | |
| return true; | |
| } | |
| return false; | |
| } | |
| </script> | |
| </body> | |
| </html> |

http://htmlpreview.github.io/?https://github.com/kizob123/Place-It-Down/blob/master/index.htm
| <!DOCTYPE html> | |
| <!-- | |
| To change this license header, choose License Headers in Project Properties. | |
| To change this template file, choose Tools | Templates | |
| and open the template in the editor. | |
| --> | |
| <html> | |
| <head> | |
| <title>Covid-19_Symptom_Checker</title> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| #header_name{ | |
| font-size: 50px; | |
| background: #fa8e2e; | |
| } | |
| #report{ | |
| width: 100%; | |
| height: 40px; | |
| background: moccasin; | |
| } | |
| #datasets{ | |
| width: 100%; | |
| height: 70px; | |
| background: moccasin; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="header_name">Covid-19 Symptom Checker</div> | |
| <form action="#" method="post" class="demoForm" id="demoForm"> | |
| <fieldset> | |
| <legend>Check Yourself Carefully to Save Yourself and Others</legend> | |
| <p>Select which and which symptoms \nyou are feeling at this time.</p> | |
| <p> | |
| <label><input type="checkbox" name="sports[]" value="Fever1" /> Fever</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Dry Cough2" /> Dry Cough</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Tiredness3" /> Tiredness</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Aches and Pains4" /> Aches and Pains</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Sore Throat5" />Sore Throat</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Diarrhoea6" /> Diarrhoea</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Cunjunctivitis7" /> Cunjunctivitis</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Dry Cough8" /> Dry Cough</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Headache9" /> Headache</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Loss of Taste or Smell10" /> Loss of Taste or Smell</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Skin Rash11" />Skin Rash</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Discoloration of Fingers or Toes12" /> Discoloration of Fingers or Toes</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Difficult Breathing13" /> Difficult Breathing</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Shortness of Breath14" /> Shortness of Breath</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Chest Pain/Pressure15" /> Chest Pain/Pressure</label><br> | |
| <label><input type="checkbox" name="sports[]" value="Loss of Speech or Movement16" /> Loss of Speech or Movement</label><br> | |
| </p> | |
| </fieldset> | |
| </form> | |
| <div id="report"></div> | |
| <div id="datasets"> | |
| <p>Some useful help online: | |
| <a href="https://www.cdc.gov/coronavirus/2019-ncov/cases-updates/testing-in-us.html">Coronavirus Disease 2019 (COVID-19)</a><br> | |
| <a href="https://www.who.int/docs/default-source/coronaviruse/situation-reports/20200531-covid-19-sitrep-132.pdf?sfvrsn=d9c2eaef_2">Coronavirus disease (COVID-19) Situation Report–132(Download document)</a><br> | |
| <a href="https://multimedia.scmp.com/infographics/news/china/article/3047038/wuhan-virus/index.html">Coronavirus: the disease | |
| Covid-19 explained</a> | |
| </div> | |
| <script type="text/javascript" src="jquery.js"></script> | |
| <script type="text/javascript"> | |
| var ixi=0; | |
| var sports = document.forms['demoForm'].elements[ 'sports[]' ]; | |
| var x = document.getElementById("report"); | |
| var xx1=new Array(16); | |
| for (var i=0, len=sports.length; i<len; i++) { | |
| sports[i].onclick = doSomething; | |
| } | |
| function doSomething() { | |
| var xx = this.value; | |
| var xxx =""+xx[xx.length-1]; | |
| if((xx[xx.length-2])==='1') | |
| xxx="1"+xxx; | |
| if ( this.checked ) { | |
| ixi=ixi+1; | |
| //alert( this.value ); | |
| xx1[parseInt(xxx)]=xxx; | |
| doIt(ixi,xx1); | |
| } | |
| else{ | |
| ixi=ixi-1; | |
| xx1[parseInt(xxx)]="0"; | |
| doIt(ixi,xx1); | |
| } | |
| } | |
| function doIt(z, t){ | |
| if(z>5) | |
| if(!cont(t,"9")){ | |
| x.style.fontsize= "40px"; | |
| x.style.fontstyle= "bold"; | |
| x.style.color= "blue"; | |
| x.innerHTML ="May be you should go for test."; | |
| } | |
| else{ | |
| x.style.color= "red"; | |
| x.innerHTML ="You definitely should go for test."; | |
| } | |
| } | |
| function cont(z, t){ | |
| for(var h=0; h<z.length;h=h+1){ | |
| if(parseInt(z[h])>parseInt(t)) | |
| return true; | |
| } | |
| return false; | |
| } | |
| </script> | |
| </body> | |
| </html> |
https://play.google.com/store/apps/dev?id=5256283133661827933