-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (29 loc) · 963 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
34
35
<html>
<head>
<title>Psychic Name Generator</title>
<meta name="description" content="A simple name generator.">
<meta name="author" content="Robert Komaromi">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="centre-container">
<div class="image"></div>
<form onsubmit="generateName(event)">
<input type="text" id="name" readonly="readonly">
<input type="submit" value="Generate">
</form>
<div class="instructions">
<h1>How to use</h1>
<ol>
<li>Click the generate button</li>
<li>... ?</li>
<li>Profit</li>
</ol>
</div>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>