Skip to content

Commit

Permalink
first web page
Browse files Browse the repository at this point in the history
  • Loading branch information
diiinesh committed May 30, 2024
1 parent 6a84dfe commit 496c6a5
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
22 changes: 21 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
Hello World!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>John Doe</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Dinesh Amalathasan</h1>
<p>Student @ TU Darmstadt | Software Engineer @ CapGemini</p>
<p>
<a href="https://www.linkedin.com/in/dinesh-amalathasan-07645a1a4/" target="_blank">LinkedIn</a> |
<a href="https://github.com/diiinesh" target="_blank">GitHub</a>
</p>
</header>
</div>
</body>
</html>
37 changes: 37 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 496c6a5

Please sign in to comment.