-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathanalyticalengine.html
More file actions
60 lines (60 loc) · 3 KB
/
analyticalengine.html
File metadata and controls
60 lines (60 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/assets/favicon.png">
<title>Analytical Engine</title>
<link rel="stylesheet" href="style.css">
<style>
.image-container {
align-items: center;
margin: 30px;
margin-left: 160px;
width: 540px;
display: flex;
flex-direction: row;
border: solid 5px;
border-color: #38aaae;
border-radius: 5px;
}
.image-wrapper {
position: relative;
bottom: 0;
display: inline-block;
vertical-align: top;
border: none;
}
.analyticalEngineImage {
margin: 0;
padding: 0;
display: inline-block;
border: none;
vertical-align: top;
}
.analyticalEngineImage:hover {
cursor: pointer;
}
</style>
<body>
<div class="container">
<h1>the analytical engine</h1>
<div>
<div class="body-container">
<p> The Analytical Engine was first conceptualized by <b>Charles Babbage</b> in the mid 1830s. Ada later expanded on Babbage’s findings with a resulting paper published in <i>Taylor’s Scientific Memoirs</i> in August 1843. Of the sixty-six pages published, <b>forty-one were Ada’s</b>.<br><br>Although never built, the main components of the machine would include <b>the Mill</b>, <b>the Store</b>, and <b>card punch/printer</b> unit. <i>(Click on each component to learn more!)</i></p> <div class="image-container">
<div class="image-wrapper" style="right: 0;">
<img class="analyticalEngineImage" src="./assets/TheStore.png" alt="The Store" width="300" height="310" onclick="window.location.href='store.html'" onmouseover="this.src = './assets/TheStoreCircled.png';" onmouseout="this.src = './assets/TheStore.png'">
</div>
<div class="image-wrapper" style="left: 0;">
<img class="analyticalEngineImage" src="./assets/TheMill.png" alt="The Mill" width="240" height="150" onclick="window.location.href='mill.html'" onmouseover="this.src = './assets/TheMillCircled.png';" onmouseout="this.src = './assets/TheMill.png'">
<img class="analyticalEngineImage" src="./assets/PunchCard_Printer.png" alt="Punch Card Printer" width="240" height="160" onclick="window.location.href='io.html'" onmouseover="this.src = './assets/PunchCard_PrinterCircled.png';" onmouseout="this.src = './assets/PunchCard_Printer.png'">
</div>
</div>
</div>
</div>
<div class="next-button" onclick="window.location.href='computationalthinking.html'">
<div class="button-text">computational thinking ></div>
</div>
</div>
</body>
</html>