diff options
author | Marvin Borner | 2020-05-15 16:14:35 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-15 16:14:35 +0200 |
commit | 462fe26ba6ee6850026e241980ac1267ed05cdcd (patch) | |
tree | 1d4ba5b5c68aa4f795e0ff06d0676ca4c5c24c17 /.boilerplates/web/index.html | |
parent | d7dc1e53a76e76fd14584d27386115c49c6be91d (diff) |
Added boilerplate tool
Diffstat (limited to '.boilerplates/web/index.html')
-rw-r--r-- | .boilerplates/web/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.boilerplates/web/index.html b/.boilerplates/web/index.html new file mode 100644 index 0000000..47f32f6 --- /dev/null +++ b/.boilerplates/web/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <link rel="stylesheet" href="style.css" type="text/css" media="all"> + <title>Index</title> + </head> + <body> + + <script src="script.js" charset="utf-8"></script> + </body> +</html> |