-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.71 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
<!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">
<title>FCC: Ada Lovelace Tribute Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main id="main">
<h1 id="title">Ada Lovelace</h1>
<p>The first programmer in History.</p>
<figure id="img-div">
<img id="image" src="https://www.womenintech.co.uk/wp-content/uploads/2018/10/ada_lovelace_portrait_by_chalon_1838-e1539075430995.jpg" alt="A painting of Ada Lovelace">
<figcaption id="img-caption">
An oil painting of homeschooled Ada Lovelace, the English mathematician and writer, born in 1815 and passed away in 1852.
</figcaption>
</figure>
<section id="tribute-info">
<h2 id="headline">Some curious facts about Lovelace:</h2>
<ul>
<li>Born in London, United Kingdom.</li>
<li>She was homeschooled by her mother and had tutors.</li>
<li>She learned science and Mathematics, becoming a mathematician.</li>
<li>Her mother was the one who insisted in her learning Sciences and Mathematics.</li>
<li>She is considered to be the first programmer because she used to take notes on how an "specific engine could transition calculation to computation."</li>
<li>There's an "Ada Lovelace Day": the second Tuesday in October.</li>
</ul>
<h3> Check out more on Ada Lovelace and other important women in technology History by <a id="tribute-link" target="_blank" href="https://www.womenintech.co.uk/10-famous-women-technology-changed-world">visiting the Women in Tech website</a></h3>
</section>
</main>
</body>
</html>