Skip to content

Commit

Permalink
add contents
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocassani committed Sep 6, 2024
0 parents commit a07d859
Show file tree
Hide file tree
Showing 5 changed files with 113 additions and 0 deletions.
Binary file added Latest Resume.pdf
Binary file not shown.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Business Card Website

This is a simple business card website created as a personal project.

## Acknowledgements

I would like to give a big thanks to Robert Johns at [hackr.io](https://hackr.io/) for the idea behind this project.

## Contact

Bruno Cassani - brunocassani04@gmail.com
44 changes: 44 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>

<html lang = "en">

<head>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>Business-Card</title>
<link rel = "stylesheet" href = "style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>

<body>
<div id = "businessCard">
<img src = "photo.png" alt = "Bruno Cassani" class = "profile-photo">
<h1>Bruno Cassani</h1>
<!--<h2>Data Scientist</h2>-->

<!--<h2>About Me</h2>-->
<p2>
Mathematics and Computer Science sophomore at Boston College with looking for opportunities to explore my passion for data science.
</p2>

<p><a href="mailto:brunocassani04@gmail.com"><i class="fas fa-envelope"></i> brunocassani04@gmail.com </a></p>
<p><a href="tel:+17815261234"><i class="fas fa-phone"> </i> (215)807-9723 </a></p>

<div id = "socialLinks">
<h2> Connect with Me</h2>
<p><a href="https://www.linkedin.com/in/bruno-cassani-51bb95272/" target="_blank"><i class="fab fa-linkedin"></i> Check out my profile... </a></p>
<p><a href="https://github.com/brunocassani" target="_blank"><i class="fab fa-github"></i> ... or my portfolio!</a></p>
<p><a href="Latest Resume.pdf" target="_blank"><i class="fas fa-file"></i> View my full resume</a></p>
</div>

<!--<div id="bio">
<h2>About Me</h2>
<p2>Sophomore at Boston College double-majoring in Mathematics and Computer Science.</p>
</div>-->

</div>

</body>

</html>

Binary file added photo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
body {
font-family: 'Trebuchet MS', sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

#businessCard {
box-shadow: 0 0 10px #ccc;
background-color: white;
padding: 20px;
width: 300px;
text-align: center;
}

#businessCard p {
text-align: left;
}
.profile-photo {
width: 100px;
height: auto;
border-radius: 50%;
margin: 0 auto;
}

h1, h2 {
color: #333;
}

p, a {
color: #555;
font-size: 16px;
text-decoration: none;
}
p2 {
color: #555;
font-size: 16px;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}

.profile-photo:hover {
transform: scale(1.1);
transition: transform 0.3s ease-in-out;
}

@media only screen and (max-width: 600px) {
#businessCard {
width: 90%;
padding: 10px;
}
}

0 comments on commit a07d859

Please sign in to comment.