-
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
0 parents
commit a07d859
Showing
5 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,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 |
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,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> | ||
|
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,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; | ||
} | ||
} | ||
|