Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenedeon committed May 9, 2023
1 parent 8a5469d commit 5a0697b
Showing 1 changed file with 104 additions and 1 deletion.
105 changes: 104 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,104 @@
Hello World
<!DOCTYPE html>
<html>
<head>
<title>Eugene d'Eon - Research Publications</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

header {
background-color: rgb(31, 31, 31);
color: white;
display: flex;
align-items: center;
padding: 10px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.logo img {
height: 100px;
margin-right: 20px;
}

h1 {
margin: 0;
font-size: 1.8em;
}

main {
padding: 20px;
}

h2 {
font-size: 24px;
margin-top: 0;
font-weight: normal;
}

ul {
list-style-type: none;
padding: 0;
margin: 0;
}

li {
margin-bottom: 10px;
}

li ul {
margin-top: 5px;
margin-left: 20px;
}

a {
color: blue;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}
</style>
</head>

<body>
<header>
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
<h1 class="name">Eugene d'Eon</h1>
</header>

<main>
<h2>PUBLICATIONS</h2>
<ul>
<li>
<h3>2023</h3>
<ul>
<li><a href="#">Publication Title 1</a></li>
<li><a href="#">Publication Title 2</a></li>
</ul>
</li>
<li>
<h3>2022</h3>
<ul>
<li><a href="#">Publication Title 3</a></li>
<li><a href="#">Publication Title 4</a></li>
</ul>
</li>
<li>
<h3>2021</h3>
<ul>
<li><a href="#">Publication Title 5</a></li>
<li><a href="#">Publication Title 6</a></li>
</ul>
</li>
</ul>
</main>
</body>
</html>

0 comments on commit 5a0697b

Please sign in to comment.