-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest.html
More file actions
37 lines (36 loc) · 1.67 KB
/
test.html
File metadata and controls
37 lines (36 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Numerologically Form with Lifepath + Array Addition" />
<meta charset="utf-8">
<title>Numerologically</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="//use.typekit.net/oon0ycw.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<main>
<section id="numerology-chart-form">
<p span="welcome">Welcome to</p>
<h1>numerologically</h1>
<div id="white-background-form">
<p class="information">Just enter in the following information to get a very cool, personalized numerology chart with well over 100 numbers to explore.</p>
<form name="numerologicalForm">
<label for="Birthday">Birthday</label><br>
<input type="text" name="Birthday" value="1987-06-18" /><br><br>
<label for="FirstName">First Name</label><br>
<input type="text" name="FirstName" value="victor" /><br><br>
<label for="MiddleName">Middle Name</label><br>
<input type="text" name="MiddleName" value="gerard" /><br><br>
<label for="LastName">Last Name</label><br>
<input type="text" name="LastName" value="temprano" /><br><br>
<input type="button" value="Get your numbers!" onclick="numerologically();">
</form>
<div id="output">
</div>
</div>
</section>
</main>
</body>
<script src="numerologically.js"></script>
</html>