]> Softwares of Agnibho - medscript.git/blob - resource/about.html
Bigfix: stylesheet
[medscript.git] / resource / about.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>About</title>
5 <style>
6 h1, h4, h5, p {
7 text-align: center;
8 }
9 </style>
10 </head>
11 <body>
12 <h1>MedScript</h1>
13 <h4>Version 0.2</h4>
14 <p>MedScript is a medical prescription writing software.</p>
15 <h4>Copyright &copy; <span id="copyright"></span> Dr. Agnibho Mondal</h4>
16 <h5><a href="www.agnibho.com">www.agnibho.com</a></h5>
17 <p>MedScript is free software:<br>
18 you can redistribute it and/or modify it<br>
19 under the terms of the GNU General Public License<br>
20 as published by the Free Software Foundation,<br>
21 either version 3 of the License, or (at your option) any later version.</p>
22 </body>
23 <script>
24 (function(){
25 start=2023
26 end=new Date().getFullYear()
27 if(start == end){
28 txt=start;
29 }
30 else{
31 txt=start+"-"+end
32 }
33 document.getElementById("copyright").textContent=txt;
34 })()
35 </script>
36 </html>