-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
77 lines (70 loc) · 2.96 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
<!DOCTYPE html>
<html>
<head>
<title>IWSCSRM WORKSHOP</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mediaQuery.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<p>Ada Lovelace</p>
</header>
<section class="intro">
<h1>Hey, I'm Ada! I invented coding, basically.</h1>
</section>
<section class="main">
<div class="left">
<h2>ABOUT</h2>
<p>
I was born in 1815. I eventually went on to become
the logo for<a href="https://mlh.io/" target="_blank">Major League Hacking's</a> 2016
Season. During my life, I worked with Charles Babbage on the earliest
computing devices and the predecessor to what you call software today.
</p>
<img
src="https://cdn.glitch.com/00c06d6f-7133-4af5-a6b1-8d1b754d7919%2F2018-localhost-ada-profile-1.jpg?1527624363594" />
</div>
<div class="right">
<h2>PROJECTS</h2>
<ul>
<li>
<h3>The Difference Engine</h3>
</li>
<p>
The Difference Engine is the first project I worked on with Charles
Babbage.
</p>
<li>
<h3>The Analytical Engine</h3>
</li>
<p>
From 1842-1843, I translated Luigi Menabrea's article on Babbage's
proposed "Analytical Engine."
</p>
<li>
<h3>The First Computer Program</h3>
</li>
<p>
I am credited with writing the first ever published algorithm for
computing. My work has been highlighted by many scientists! In 1990,
Allan G. Bromley wrote about me in an article titled
<em>Difference and Analytical Engines</em>. The programming language
<strong>Ada</strong>, developed by the US government, is named after
me.
</p>
</ul>
</div>
</section>
<footer>
<div class="social">
<a href="github.com" target="_blank"><i class="fa fa-github fa-3x" aria-hidden="true"></i></a>
<a href="linkedin.com" target="_blank"><i class="fa fa-linkedin fa-3x" aria-hidden="true"></i></a>
<a href="twitter.com/mlhacks"><i class="fa fa-twitter fa-3x" aria-hidden="true"></i></a>
<a href="https://www.facebook.com/MajorLeagueHacking/"><i class="fa fa-facebook fa-3x" aria-hidden="true"></i></a>
<a href="mailto:[email protected]"><i class="fa fa-envelope fa-3x" aria-hidden="true"></i></a>
</div>
</footer>
</body>
</html>