citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 13c5401c832b20909bccf9557b9ce75e4c12bdeb
parent 2d2c5478f56e298e90e2fc2d28f61d21484d58a0
Author: kyle <kyle@0x30.net>
Date:   Wed, 25 Jan 2017 22:32:02 -0700

www: remove BOM and use <meta charset> instead

Diffstat:
Mwww/index.html | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/www/index.html b/www/index.html @@ -1,12 +1,12 @@ -<!DOCTYPE html> +<!DOCTYPE html> <html> - <head> + <meta charset='UTF-8'/> <meta name="viewport" content="width=device-width" /> - <meta name="description" content="Watch source code execute." /> + <meta name="description" content="Watch source code run." /> <title>C It Run</title> - <link rel="stylesheet" type="text/css" href="citrun.css" /> + <link rel="stylesheet" type="text/css" href="/citrun.css" /> </head> <body> @@ -55,5 +55,4 @@ <li> <a href="/analysis">Static analysis</a> </li> </ul> </body> - </html>