-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 1.05 KB
/
index.html
File metadata and controls
32 lines (28 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Number Facts</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Number Facts</h1>
<h2>Click the buttons to display a random fact.<br/> Enter a number and click the buttons for specific facts.<br/> For date, type as month/day eg. 4/21</h2>
<article class="fact-display">
<p id="fact"></p>
</article>
<img src="images/Einstein-2.jpg" id="picture"></img>
<div class="userInputContainer">
<input type="text" placeholder="Enter number..." id="userInput">
</div>
<div class="buttonContainer">
<button type="button" id="triviaBtn">Trivia Fact</button>
<button type="button" id="mathBtn">Math Fact</button>
<button type="button" id="dateBtn">Date Fact</button>
<button type="button" id="yearBtn">Year Fact</button>
</div>
<footer>Made by Front End Fighters</footer>
<script src="script.js"></script>
</body>
</html>