-
Notifications
You must be signed in to change notification settings - Fork 0
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
b25ab9a
commit f610701
Showing
1 changed file
with
94 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Beatrice Vaienti - PhD Student & Researcher</title> | ||
<style> | ||
/* Add your CSS styles here */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
color: #333; | ||
} | ||
.header, .footer { | ||
background-color: #f1f1f1; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
.navigation { | ||
background-color: #333; | ||
overflow: hidden; | ||
} | ||
.navigation a { | ||
float: left; | ||
display: block; | ||
color: white; | ||
text-align: center; | ||
padding: 14px 16px; | ||
text-decoration: none; | ||
} | ||
.navigation a:hover { | ||
background-color: #ddd; | ||
color: black; | ||
} | ||
.section { | ||
padding: 20px; | ||
} | ||
/* Add more styles as per your design */ | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<div class="header"> | ||
<h1>Beatrice Vaienti</h1> | ||
<p>PhD Student & Researcher</p> | ||
</div> | ||
|
||
<div class="navigation"> | ||
<a href="#bio">Bio</a> | ||
<a href="#cv">CV</a> | ||
<a href="#projects">Projects</a> | ||
<a href="#contact">Contact</a> | ||
</div> | ||
|
||
<div class="section" id="bio"> | ||
<h2>Bio</h2> | ||
<p><!-- Your bio goes here --></p> | ||
</div> | ||
|
||
<div class="section" id="cv"> | ||
<h2>CV</h2> | ||
<p><!-- Summary of your CV or a link to download --></p> | ||
</div> | ||
|
||
<div class="section" id="projects"> | ||
<h2>Projects</h2> | ||
<!-- Insert your projects with images and descriptions here --> | ||
</div> | ||
|
||
<div class="section"> | ||
<h2>Connect with Me</h2> | ||
<!-- Insert social media icons and links here --> | ||
<!-- Link to your university page --> | ||
</div> | ||
|
||
<div class="section" id="contact"> | ||
<h2>Contact Me</h2> | ||
<form action="mailto:[email protected]" method="post" enctype="text/plain"> | ||
Name:<br> | ||
<input type="text" name="name"><br> | ||
E-mail:<br> | ||
<input type="text" name="mail"><br> | ||
Comment:<br> | ||
<input type="text" name="comment" size="50"><br><br> | ||
<input type="submit" value="Send"> | ||
<input type="reset" value="Reset"> | ||
</form> | ||
</div> | ||
|
||
<div class="footer"> | ||
<p>© 2023 Beatrice Vaienti</p> | ||
</div> | ||
|
||
</body> | ||
</html> |