-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 1.16 KB
/
index.html
File metadata and controls
38 lines (31 loc) · 1.16 KB
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
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Alien Name Generator</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
Since the dawn of time, people have wanted to know... what is their alien name?
</header>
<main>
<h1> What is my alien name?</h1>
<label for="humanNameInput"> Your name: </label>
<input type="text" id="humanNameInput" name="humanNameInput" placeholder="Type here" autocomplete="off">
<p> Your alien name is: <div id="alienNameDisplay">Result will be displayed here!</div> <p>
<h2> Would you like to decode your alien name? </h2>
<label for="alienNameInput"> Your alien name: </label>
<input type="text" id="alienNameInput" name="alienNameInput" placeholder="Alien name here" autocomplete="off">
<p> Your human name is: <div id="humanNameDisplay">Result will be displayed here!</div> <p>
</main>
<footer>
<p>© Joshua Skootsky 2020</p>
<!-- <p><a href="https://github.com/JoshuaSkootsky/tellMeIfItsAscii">GitHub repo here</a></p>
-->
</footer>
<script src="script.js">
</script>
</body>
</html>