-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfibonacci.html
More file actions
executable file
·55 lines (45 loc) · 1.51 KB
/
fibonacci.html
File metadata and controls
executable file
·55 lines (45 loc) · 1.51 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<TITLE>Fibonacci Example</TITLE>
<!--Load external CSS styles -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
<!-- <link rel="stylesheet" href="css/styles.css">-->
</head>
<style>
h1 {
text-align: center;
font-family: "Source Sans Pro", sans-serif;
font-weight: normal;
}
p1 {
text-align: right;
font-family: "Lucida Console", monospace;
font-weight: normal;
}
p2 {
text-align: right;
font-family: "Times New Roman", Times, serif;
font-weight: normal;
}
</style>
<body>
<!--OneDrive embed Path "My files/W3Spaces-Embedded-Photos/fibonacci.jpg"-->
<h1><img src="https://1drv.ms/i/c/351e429395ffd928/UQQo2f-Vk0IeIIA1HSYAAAAAAGnoICyaYYMwz8M" width="600" height="600" ></h1>
<!--<h1><img src="images/fibonacci.jpg"></h1>-->
<h1>Fibonacci Loop Program</h1>
<p1 id="op01"></p1>
<p1 id="output_string"></p1>
<!-- Load external JavaScript -->
<script src="scripts/fibonacci.js"></script>
<div class="w3-display-bottomright w3-padding-small">
<!-- Visit Site Home Page -->
<button class="w3-button w3-light w3-padding-small w3-section ">
<a href='https://cmathgit.github.io/cruzgmacias-cv/'>
<i class="fa fa-home w3-small"><p class="w3-small"> <br> Previous Page</p></i>
</a>
</button>
</div>
</body>
</html>