pajenerator/index.gohtml

30 lines
725 B
Text
Raw Normal View History

2024-01-23 00:55:15 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pajenerator - The Indian Name Generator!</title>
<link rel="stylesheet" href="/index.css" />
<script src="/index.js"></script>
</head>
<body onload="onready()">
<center>
<header>
<h1>Pajenerator - The Indian Name Generator</h1>
<hr>
</header>
<label for="name-box">Your randomly generated Indian name is:</label>
<br>
<input type="text" placeholder="Pajeet" name="name-box" id="name-box" readonly>
<br>
<button onclick="generate()" id="btn">Do the needful</button>
2024-01-23 01:17:35 +01:00
<footer>
2024-01-23 01:43:07 +01:00
<p>Written by <a href="https://github.com/ejv2/">ejv2</a> in 2024 -- <a href="/ijeet.jpg">Inspiration</a></p>
2024-01-23 01:17:35 +01:00
</footer>
2024-01-23 00:55:15 +01:00
</center>
</body>
</html>