-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a5469d
commit 5a0697b
Showing
1 changed file
with
104 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |