Skip to content

Commit

Permalink
Second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
devJayed committed Jul 30, 2024
1 parent b792841 commit 3226f64
Showing 3 changed files with 68 additions and 0 deletions.
41 changes: 41 additions & 0 deletions CSS/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}

.body {
background-color: gray;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.cup {
width: 300px;
height: 300px;
background-color: #f5ebe0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
}
.below-cup {
/* */
}
p {
text-align: center;
margin-top: 8px;
margin-bottom: 8px;
}
button {
padding: 8px;
width: 100px;
border-radius: 5px;
background-color: black;
color: white;
}
Binary file added images/Glass ICON.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Congratulations</title>
<link rel="stylesheet" href="./CSS/styles.css" />
</head>
<body>
<section class="main">
<div class="container">
<div class="cup">
<h1>Congratulations!</h1>
<p>On Your Wedding</p>
<img src="./images/Glass ICON.png" alt="" />
</div>
<div id="below-cup">
<p>
Wishing You All The Best For <br />
Your Celebration
</p>
<p><button>Next</button></p>
</div>
</div>
</section>
</body>
</html>

0 comments on commit 3226f64

Please sign in to comment.