From 496c6a56a0c700d0d04b299f6df3422a65213158 Mon Sep 17 00:00:00 2001 From: git Date: Thu, 30 May 2024 18:34:32 +0200 Subject: [PATCH] first web page --- index.html | 22 +++++++++++++++++++++- styles.css | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 styles.css diff --git a/index.html b/index.html index 980a0d5..229a03a 100644 --- a/index.html +++ b/index.html @@ -1 +1,21 @@ -Hello World! + + + + + + John Doe + + + +
+
+

Dinesh Amalathasan

+

Student @ TU Darmstadt | Software Engineer @ CapGemini

+

+ LinkedIn | + GitHub +

+
+
+ + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..e57dca6 --- /dev/null +++ b/styles.css @@ -0,0 +1,37 @@ +body { + font-family: Arial, sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + background-color: #f4f4f4; + color: #333; +} + +.container { + max-width: 800px; + margin: 0 auto; + padding: 50px 20px; + background: #fff; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + text-align: center; +} + +header h1 { + margin: 0; + font-size: 3em; +} + +header p { + margin: 10px 0; + font-size: 1.2em; +} + +header a { + color: #0073b1; + text-decoration: none; + margin: 0 10px; +} + +header a:hover { + text-decoration: underline; +}