diff options
author | arf20 <aruizfernandez05@gmail.com> | 2024-02-20 18:50:02 +0100 |
---|---|---|
committer | arf20 <aruizfernandez05@gmail.com> | 2024-02-20 18:50:02 +0100 |
commit | 3895630e5719e6a9e91a00daade9999405030cdc (patch) | |
tree | 9a842631a799bbe4ada65f526cab12d5c31e4d92 /template.html | |
parent | aae4a61250f1799e29fe6790991fbc800965250d (diff) | |
download | arfnet2-3895630e5719e6a9e91a00daade9999405030cdc.tar.gz arfnet2-3895630e5719e6a9e91a00daade9999405030cdc.zip |
Remove shit, compile html and pdf, makefile
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/template.html b/template.html new file mode 100644 index 0000000..9b298e7 --- /dev/null +++ b/template.html @@ -0,0 +1,28 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title>$title$</title> + <style> + table, td, th { + border: 1px solid black; + } + th { + padding-top: 5px; + padding-bottom: 5px; + } + td { + padding-top: 2.5px; + padding-bottom: 2.5px; + } + th, td { + padding-left: 10px; + padding-right: 10px; + } + </style> + </head> + <body> + $body$ + </body> +</html> + |