-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 874 Bytes
/
index.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
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Polish gender checker</title>
<style>
h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
}
</style>
</head>
<body>
<h1>Polish gender checker</h1>
<form>
<label for="noun">Enter a noun:</label>
<input type="text" id="noun" name="noun" placeholder="dom">
<button type="submit">Check the gender</button>
</form>
<p>
Enter a noun to check its grammatical gender.
</p>
<script>
/* User input script */
/* Gender checker script */
</script>
</body>
</html>