-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHistory.html
More file actions
50 lines (48 loc) · 2.42 KB
/
Copy pathHistory.html
File metadata and controls
50 lines (48 loc) · 2.42 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="basiccss.css">
<title>History</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A brief history of prosthetics">
</head>
<body>
<h1>History</h1>
<div class="navbar">
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn" onclick="showGeneralDropDown()">General Info
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content" id="myDropdown">
<a href="general.html">General</a>
<a href="History.html">History</a>
<a href="ProstheticsToday.html">Today</a>
<a href="Application.html">Application</a>
<a href="Conclusion.html">Conclusion</a>
</div>
</div>
<a href="bioethics.html">BioEthics</a>
<a href="bioethics.html">Interactive</a>
<a href="annotatedBib.html" >Bibliography</a>
<a href="about.html">About</a>
</div>
<h1>History</h1>
<p> In the past, prosthetics have taken many forms. Until the early 1500s, prosthetics were usually made of mostly wood, bronze, or copper. They were mostly peg legs, hooks, or hands and feet made to emulate real ones. None of these were able to move independently from the rest of the limb. In the 1500s, the first leather prosthetics were introduced. There were also prosthetics with joints and prosthetic hands that could be manipulated by the other hand. At this point, harnesses used to attach the prosthetic to the limb were introduced. Then, in the 1800s some basic manipulatable prosthetics were made. These had springs that simulated tendon-like movement. In 1912, the first aluminum prosthetic was made. After the Civil War, and World War I, the need for prosthetics became much greater. Because of this, prosthetic technology greatly improved, making it closer to what it is today.</p>
<p></p>
<script>
function showGeneralDropDown() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(e) {
if (!e.target.matches('.dropbtn')) {
var myDropdown = document.getElementById("myDropdown");
if (myDropdown.classList.contains('show')) {
myDropdown.classList.remove('show');
}
}
}
</script>
</body>
</html>