-
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 7699531
Showing
6 changed files
with
135 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap'); | ||
|
||
:root{ | ||
--font-1: 'Quicksand', sans-serif; | ||
--gradient-color : linear-gradient(to right top, | ||
#d000e1, | ||
#b900e1, | ||
#a000e1, | ||
#8400e0, | ||
#6206df, | ||
#6305de, | ||
#6305de, | ||
#6404dd, | ||
#8600dc, | ||
#a100db, | ||
#b900da, | ||
#cf05d9); | ||
--gradient-color-2 : linear-gradient(to right, #906dd4, #ad6cd1, #c76bcb, #dd6bc4, #f16cbb); | ||
} | ||
|
||
|
||
body{ | ||
margin:0%; | ||
padding:0%; | ||
} | ||
|
||
|
||
.container{ | ||
height: 100vh; | ||
background-image:var(--gradient-color); | ||
|
||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-family: var(--font-1); | ||
|
||
} | ||
.content{ | ||
padding: 2em; | ||
} | ||
|
||
.card{ | ||
padding: 1em; | ||
width: 20em; | ||
height: 32em; | ||
background-color: #32364F; | ||
border-radius: 15px ; | ||
color: #fff; | ||
text-align: center; | ||
} | ||
|
||
.girl{ | ||
margin:2em; | ||
width: 10em; | ||
height: 10em; | ||
border-radius: 50%; | ||
filter: drop-shadow(30px 18px 11px #292a3c); | ||
} | ||
.button{ | ||
background-image: var(--gradient-color-2); | ||
color: white; | ||
font-family: var(--font-1); | ||
font-size:medium; | ||
padding: 12px 25px; | ||
border-radius: 30px; | ||
font-weight: 500; | ||
border: none; | ||
outline: none; | ||
} | ||
.footer{ | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.Name{ | ||
|
||
font-size: larger; | ||
font-weight: 700; | ||
margin-top: -5px; | ||
} | ||
.job{ | ||
color: #6D6D87; | ||
font-weight: 800; | ||
padding-top: 2px; | ||
text-transform: uppercase; | ||
margin-bottom: 20px; | ||
padding-top: 0.1cm; | ||
} | ||
.text{ | ||
color:rgb(241, 241, 241); | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Banner design</title> | ||
<link rel="stylesheet" href="./1-07-2021.css"> | ||
<link rel="stylesheet" href="./image"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="card"> | ||
<div class="symbol"> | ||
<img style="float: left;" src="./image/Hamburger.svg" alt="Hamburger"> | ||
<img | ||
style=" float: right; | ||
margin: -4px;" src="./image/Three-menu.png" alt="Three-dot-menu"> | ||
<img | ||
style="float: right; | ||
padding: 0em 1em 0em 0em;" | ||
src="./image/icons8-love-24.png" alt="love"> | ||
|
||
</div> | ||
<div class="content"> | ||
<img class="girl" src="./image/girl.jpg" alt="image girl"> | ||
<div class="Name">Jay</div> | ||
<div class="job">Developer</div> | ||
<div class="text">Jay is small developer, He will <br>develop a small things.</div> | ||
</div> | ||
<div class="footer"> | ||
|
||
<button class="button">MORE</button> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |