From 4d46431f0a310f3fe2d74f54dd2b67340c1e68a2 Mon Sep 17 00:00:00 2001 From: Sascha Schulz <sschulz@dh-software.de> Date: Di, 24 Okt 2023 16:00:09 +0200 Subject: [PATCH] add css grid template --- templates/008-css/css-grid.html | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/templates/008-css/css-grid.html b/templates/008-css/css-grid.html new file mode 100644 index 0000000..4e70d42 --- /dev/null +++ b/templates/008-css/css-grid.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>Grid</title> + <style> + .grid { + display: grid; + } + </style> + </head> + <body> + <div class="grid"> + <div></div> + </div> + </body> +</html> -- Gitblit v1.9.3