-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (87 loc) · 3.98 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Proza+Libre&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a5e30260f9.js" crossorigin="anonymous"></script>
<title>Ada Lovelace Portfolio</title>
</head>
<body>
<nav>
<h2 class="logo">Ada Lovelace</h2>
<ul class="navigation-items">
<li class="navigation-item"><a href="#">About Me</a></li>
<li class="navigation-item"><a href="#">Projects</a></li>
<li class="navigation-item"><a href="#">Skills</a></li>
<li class="navigation-item"><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<section id="about-me">
<div class="about-me-container">
<div class="about-me-text-container">
<h2>About Me</h2>
<p>Hi! I'm Ada, Countess of Lovelace and am an English mathematician and writer, chiefly known for my work on Charles
Babbage's proposed mechanical general-purpose computer, the Analytical Engine.</p>
<p>I am one of the first to recognize that machines have applications beyond pure calculation, and to have published the
first algorithm intended to be carried out by such a machine.</p>
<p>In my free time I like to read about scientific developments, mathematics, and computational mathematics. I also like to
take my chances of winning big.</p>
<p>Fun fact! I've been programing for <span id="time-container"></span> seconds!</p>
</div>
<img src=".//images/portrait.jpg" alt="Ada Lovelace" class="portrait">
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<details>
<summary class="project-title">
<h3>The first computer program</h3>
</summary>
<img src=".//images/Bernoulli_numbers.jpg" alt="Bernoulli Numbers" class="project-img">
<p>The world's first computer program for computing Bernoulli numbers.</p>
</details>
<details>
<summary class="project-title">
<h3>The Analytical Engine</h3>
</summary>
<img src=".//images/analyticalmachine.webp" alt="Analytical Machine" class="project-img">
<p>I helped Charles Babbage on topics ranging from math to computation that helped the development of the Analytical
Engine.</p>
</details>
<details>
<summary class="project-title">
<h3>The Ada programming language</h3>
</summary>
<img src=".//images/Ada_Mascot_with_slogan.png" alt="Ada programming language logo" class="project-img">
<p>My work inspired the United States Department of Defense to name their new programming language after me.</p>
</details>
</section>
<section id="skills">
<h2>Skills</h2>
<div id="skills-container">
<i class="fa-brands fa-html5"></i>
<i class="fa-brands fa-css3-alt"></i>
<i class="fa-brands fa-js"></i>
<i class="fa-brands fa-react"></i>
<i class="fa-brands fa-aws"></i>
<i class="fa-brands fa-sketch"></i>
<i class="fa-brands fa-figma"></i>
<i class="fa-brands fa-git"></i>
<i class="fa-brands fa-chrome"></i>
<i class="fa-solid fa-terminal"></i>
<i class="fa-solid fa-universal-access"></i>
<i class="fa-brands fa-npm"></i>
<i class="fa-brands fa-node"></i>
<i class="fa-brands fa-github"></i>
</div>
</section>
</main>
<script type="text/javascript" src="script.js"></script>
</body>
</html>