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; +}