26 lines
585 B
Text
26 lines
585 B
Text
|
<!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>
|
||
|
</center>
|
||
|
</body>
|
||
|
</html>
|