-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomputationalthinking.html
More file actions
49 lines (49 loc) · 2.33 KB
/
computationalthinking.html
File metadata and controls
49 lines (49 loc) · 2.33 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
<!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>Computational Thinking</title>
<link rel="stylesheet" href="style.css">
<style>
a {
margin: 0;
padding: 0;
color: #000000;
font-family: Verdana, sans-serif;
padding-top: 5px;
font-weight: normal;
font-size: 25px;
margin-top: 20px;
text-align: justify;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #38aaae;
transition: ease-out;
transition-duration: 0.2s;
text-decoration: underline;
}
a:active {
color: white;
}
</style>
<body>
<div class="container">
<h1>computational thinking</h1>
<div class="body-container">
<p><b>Charles Babbage</b> was the lead contributor for the mechanical design of the Analytical Engine. So why is <b>Ada Lovelace</b> considered the first computer programmer?</p>
<p>Ada Lovelace figured out how to use the Analytical Engine to <b>do more than just manipulate numbers</b>. She theorized that you could use the computer to work in more diverse situations, like composing music or even sewing!</p>
<p><a href="branching.html">Conditional Branching:</a> <br>Choosing between paths based on the answer to a logical question. The Analytical Engine <b>paused</b> between computations to decide what it would do next, and Lovelace realized this could be exploited to complete more involved decision-making processes.</p>
<p><a href="abstraction.html">Abstractions:</a> <br>Referring to <b>large solutions simply</b> so that we can reuse them in different, <b>unique contexts</b>. This is how computers, which run numerically, can work with other forms of data!</p>
<p>Since Ada Lovelace was the first to realize the potential for computers to go beyond simple calculations, she is credited with being the <b>first computer scientist.</b></p>
<p><i>(Click on the titles to learn more!)</i></p>
</div>
<div class="next-button" onclick="window.location.href='impact.html'">
<div class="button-text">impact ></div>
</div>
</div>
</body>
</html>