html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gender Differentiator App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>Gender Differentiator App 🚻</h2>
<input type="text" id="name-input" placeholder="Enter a name...">
<button onclick="checkGender()">Check Gender</button>
<div id="result"></div>
</div>
<div class="yt">
<a href="https://youtu.be/4bzTZQY_LZI?si=teDMOtHgvAcG_Wfv">Watch me</a
</div>
<script src="script.js"></script>
</body>
</html>
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #f0f0f0;
}
.container {
background: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
width: 100%;
max-width: 300px;
}
input[type="text"] {
width: 90%;
padding: 10px;
margin: 15px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background: #007bff;
color: #fff;
js
js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
alert("Please subscribe my channel 🙂🙏")
async function checkGender() {
const name = document.getElementById('name-input').value.trim().toLowerCase();
const resultDiv = document.getElementById('result');
if (!name) {
alert('Please enter a name!');
return;
}
try {
const response = await fetch(`https://api.genderize.io/?name=${name}`);
const data = await response.json();
if (data.gender === 'male') {
resultDiv.textContent = '🚹 Male';
resultDiv.style.color = 'blue';
} else if (data.gender === 'female') {
resultDiv.textContent = '🚺 Female';
resultDiv.style.color = 'pink';
} else {
resultDiv.textContent = '❓ Unknown';
resultDiv.style.color = 'gray';
}
} catch (error) {
resultDiv.textContent = 'Error fetching data';
resultDiv.style.color = 'red';
BROWSER
Console
Run