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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Genderguess #495

Merged
merged 2 commits into from
Jul 29, 2023
Merged
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
15 changes: 3 additions & 12 deletions Frontend-Projects/Guess The Gender By Name/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,12 @@

## **Screenshot 📸**

![Guess The Gender](https://github.com/Vikash-8090-Yadav/Future.WebNet/assets/114330097/6cb9dc6e-94c6-43ee-ac84-4b935ead80b9)

<br>


## **Working Video 📹**

https://github.com/Vikash-8090-Yadav/Future.WebNet/assets/114330097/e2bcf2b4-a466-46c5-a407-593d06e2a346

<br>


## **Created By 👦**
![Guess The Gender](https://github.com/Vikash-8090-Yadav/Future.WebNet/assets/125059410/d10aea84-97b8-48a4-8da0-9d4990f11dfa)

[Avdhesh Varshney](https://github.com/Avdhesh-Varshney)
## **Working Video**
https://github.com/Vikash-8090-Yadav/Future.WebNet/assets/125059410/d0b1cd88-12f9-42ac-a1ee-5b38d0652f58

<br>

7 changes: 4 additions & 3 deletions Frontend-Projects/Guess The Gender By Name/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link rel="shortcut icon" href="./logo.svg" type="image/x-icon">

<!-- Title of the website -->
<title>Guess The Gender By Name</title>
<title>Guess The Gender</title>

<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet" />
Expand All @@ -22,8 +22,9 @@
<!-- Main container of the project -->
<div class="container">
<h1 class="app-title">
<img src="./logo.svg" alt="Logo" class="app-logo">
Guess The Gender By Name
<img src="./logo.svg" alt="Logo" class="app-logo"><br>

Guess the Gender
</h1>

<!-- Details of the app creator -->
Expand Down
22 changes: 13 additions & 9 deletions Frontend-Projects/Guess The Gender By Name/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ body {

/* Logo of the website */
.app-logo {
width: 10%;
height: 10%;
width: 25%;
height: 15%;
position: inherit;
}

/* Title of the website */
.app-title {
font-weight: 400;
font-weight: 700;
text-transform: uppercase;
text-align: center;
width: 80%;
width: 70%;
position: relative;
margin: auto;
color: #020332;
letter-spacing: 0.2em;
color: #4b3897;
letter-spacing: 0.1 em;
}

/* Styling of the creator heading of the website */
Expand Down Expand Up @@ -74,16 +74,20 @@ a:hover {

#name {
padding: 0.8em 0.5em;
border: 1px solid #020332;
border-radius: 0.5em;
border: 2px solid #020332;
border-radius: 1.5rem;
}

/* Submit button styling */
#submit {
background-color: #7e5eff;
color: #ffffff;
border: none;
border-radius: 0.5em;
border-radius: 1.5rem;
cursor: pointer;
}
#submit:active{
transform: scale(0.95);
}

.female {
Expand Down