-
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
8f2cebe
commit 81dd4f0
Showing
2 changed files
with
41 additions
and
3 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 |
---|---|---|
@@ -1,11 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>Priyan</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Grandstander&display=swap" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<h1><center>Hello :)</center></h1> | ||
<h4>There is nothing here, Why did you search me?</h4><br> | ||
<h5>Hosted with GitHub Pages :)</h5> | ||
<section> | ||
<div class="card"> | ||
I am Priyan J | ||
</div> | ||
<div class="card"> | ||
Building Momentum | ||
</div> | ||
</section> | ||
</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,26 @@ | ||
body { | ||
margin: 20px; | ||
background: #343434; | ||
color: aliceblue; | ||
font-family: 'Grandstander', cursive; | ||
font-size: x-large; | ||
align-items: center; | ||
justify-content: center; | ||
display: flex; | ||
flex-direction: column; | ||
box-sizing: border-box; | ||
} | ||
|
||
.card { | ||
border-radius: 12px; | ||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26); | ||
min-width: 50rem; | ||
max-width: 50rem; | ||
margin: 2rem auto; | ||
padding: 1rem; | ||
} | ||
|
||
.card:hover { | ||
box-shadow: 0 2px 8px rgba(0, 255, 204, 0.766); | ||
min-width: 52rem; | ||
} |