Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
BeatriceVaienti authored Dec 18, 2023
1 parent b25ab9a commit f610701
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions index.html
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>&copy; 2023 Beatrice Vaienti</p>
</div>

</body>
</html>

0 comments on commit f610701

Please sign in to comment.