Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gauravsaxena816 patch 1 #544

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added medialinks/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions medialinks/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="intro">
<h2>My Social Media Links</h2>
</div>



<div class="container">


<div class="card">
<div class="image">
<img src="github.png" height="400px" width="400px" >
</div>
<div class="content">
<h2>My github Account</h2>
<p>Scan the qr code to visit my github repo</p>
</div>
</div>


<div class="card">
<div class="image">
<img src="insta.png" height="400px" width="400px">
</div>
<div class="content">
<h2>My insta link</h2>
<p>Scan the qr code to visit my insta account</p>
</div>
</div>


<div class="card">
<div class="image">
<img src="qrcode.png" height="400px" width="400px">
</div>
<div class="content">
<h2>my LinkedIn</h2>
<p>Scan the qr code to visit my linkedin profile</p>
</div>
</div>


</div>
</body>
</html>
Binary file added medialinks/insta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added medialinks/qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added medialinks/qrcode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions medialinks/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
*{
margin: 0;
padding: 0;
}
.intro{
background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
display: flex;
justify-content: center;
font-size: 2rem;
/* color: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%); */
;
}
.container{
height: 100vh;
width: 100vw;
display: flex;
justify-content: space-evenly;
align-items: center;
background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
}

.card{
height: 700px;
width: 500px;
background-color: azure;
display: flex;
flex-direction: column;
justify-content: space-around;
border-radius: 15px;
box-shadow: 1px 5px 20px black;
gap: 30px;
}

.card:hover{
transform: scale(1.1);
transition: all 0.1s linear 0s;
}

.image{
align-self: center;
/* background-color: rgb(23, 193, 245); */
height: 400px;
width: 400px;
padding: 10px;
border-radius: 15px;
}

.content h2 {
padding-left: 20px;
font-size: 2.1rem;
}
.content p{
padding: 20px;
font-size: 1.3rem;
}