From dc9be304c5bd5df4e3a44ba790bb4da278a278be Mon Sep 17 00:00:00 2001 From: Nawreua <erwan.auer@inria.fr> Date: Mon, 10 Feb 2025 16:35:13 +0100 Subject: [PATCH] site: add new index --- index.html | 25 +++++++++++++++++++++++++ static/css/blogfolio.css | 10 ++++++++++ 2 files changed, 35 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..38a0535 --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset='utf-8'> + <meta http-equiv='X-UA-Compatible' content='IE=edge'> + <title>Hello, World</title> + <meta name='viewport' content='width=device-width, initial-scale=1'> + <link rel='stylesheet' type='text/css' media='screen' href='static/css/blogfolio.css'> + <script src='static/js/blogfolio.js'></script> +</head> +<body> + <p>Hello, World</p> + <br> + <div> + <div class="flex-iter" style="flex-direction: row"> + <p>Hello</p> + <img src="https://pm1.aminoapps.com/6203/d6a20c9518be13e1cbeb33d23bb4a6eca305b9c6_128.jpg" width="128" height="128"> + </div> + <div class="flex-iter" style="flex-direction: row-reverse"> + <p>World</p> + <img src="https://pm1.aminoapps.com/6203/d6a20c9518be13e1cbeb33d23bb4a6eca305b9c6_128.jpg" width="128" height="128"> + </div> + </div> +</body> +</html> \ No newline at end of file diff --git a/static/css/blogfolio.css b/static/css/blogfolio.css index e69de29..3ad117f 100644 --- a/static/css/blogfolio.css +++ b/static/css/blogfolio.css @@ -0,0 +1,10 @@ +body { + background-color: #aaa; +} + +div.flex-iter { + margin: 1em; + display: flex; + gap: 10px; + justify-content: center; +} \ No newline at end of file -- GitLab