-
Notifications
You must be signed in to change notification settings - Fork 0
/
fun_facts.html
41 lines (35 loc) · 1.32 KB
/
fun_facts.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
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Elder Trent Pomar</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
</head>
<body>
<nav class="header">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="picture_log.html">Picture Log</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Me</a></li>
<li><a href="fun_facts.html">Fun Facts</a></li>
</ul>
</nav>
<img id="funFactPic" src="funfact.jpg">
<p>Sending Elder Pomar money for his birthday?<br/>
See how much it would be in Argentine currency!</p>
<div class="inputForm">
<form>
<label>Enter a Dollar Amount</label><br/>
<input id="currencyInput" type="text"></input><br/><br/>
<input id="currencySubmit" type="submit" value="Submit"></input>
</form>
</div>
<div id="currencyResults"></div>
<div class="about_footer">
<p><a href="https://github.com/sonofflynn89/creative_project_3_cs_260">https://github.com/sonofflynn89/creative_project_3_cs_260</a> </p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script text="type/javascript" src="/script.js"></script>
</body>
</html>