-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 2.31 KB
/
index.html
File metadata and controls
63 lines (62 loc) · 2.31 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<link href="css/bootstrap.css" rel="stylesheets" type="css/text">
<link href="css/styles.css" rel="stylesheet" type="text/css" >
<script src="js/jquery-3.3.1.js"></script>
<script src="js/scripts.js"></script>
<title>Welcome to Mayan Ping Pong</title>
</head>
<body>
<div class="container">
<h2>Welcome to Mayan Ping Pong</h2>
<!--Navbar -->
<ul>
<li><a href="default.asp">Home</a></li>
<li><a href="contact.asp">Contact</a></li>
<li><a href="about ping pong.asp">About</a></li>
</ul>
<!--Pingpong number form row -->
<div class="row">
<div class="col-md-4">
<img src="Maya.Numbers.Chart.jpg" alt="Mayan Numbers">
<h2>Game Objective:</h2>
<p>This game will allow you to: find out the name of the month you were born in Mayan and it will count up to your number from 1. They're a few exceptions in the game including:</p>
<ol>
<li>Numbers divisible by 3 will pop message "ping"</li>
<li>Numbers divisible by 5 will pop message "pong"</li>
<li>Numbers divisible by 15 will pop message "ping-pong"</li>
</ol>
<form id="numberInput">
<label for="number">Please enter a number</label>
<input id="number" type="text">
<button type= "submit" class="btn">Submit</button>
</form>
<div id="resultOutput">
<label for="result">Your Result is:</label>
<input id="output" type="text">
</div>
</div>
<!--Mayan month form row -->
<form id="CalendarMonth">
<h2>Find Your Mayan Birth Month</h2>
<img src="mayan.calendar.gif" alt="calendar">
<form id="calendarInput">
<label for="month">Please enter your birth month</label>
<input id="month" type="text">
<button type= "submit" class="btn">Submit</button>
</form>
</div>
</div>
</body>
<footer>
<div class="jumbotron">
<h1>About Ping Pong</h1>
<p>
Created by : https://github.com/dominguezsantal
</p>
<p>Attack on Titans Level Tester 1</p>
</div>
© Copyright 2018 AlexPage
</footer>
</html>