-
Notifications
You must be signed in to change notification settings - Fork 0
/
Day 2 Challenge 4.html
63 lines (54 loc) · 2.51 KB
/
Day 2 Challenge 4.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
<!DOCTYPE html>
<html>
<head>
<meta name="author" content="Farah Ibrar">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Lesson 2 Challenge 4</title>
<style>
#heading {
font-family: Arial;
background-color: red;
color: white;
}
#uppercase {
text-transform: uppercase;
}
/* Add your class rules here */
.sports-history {
color: orange;
}
.computing-history {
color: green;
}
</style>
</head>
<body>
<div id="heading">
<h1> Sporting History</h1>
<p id='uppercase'>
Giants & Heroes
</p>
</div>
<!-- add the correct class here -->
<h3 class="sports-history"> Track & Field</h3>
<p>
Some sporting feats ridicule expectations, fewer violate logic but the rarest of all added a defying of gravity to a hat-trick of achievements. At 3.45pm on 18 October 1968 in Mexico City’s Estadio Olímpico Universitario Bob Beamon accomplished all three.
</p>
<!-- add the correct class here -->
<h3 class="sports-history">Rugby</h3>
<p>
With the game locked at 10 - 10 with thirty minutes on the clock, a Munster scrum just outside the Biarritz line enabled Peter Stringer to do the unexpected and break on the blindside for an unforgettable try. A moment of sheer brilliance by the Munster and Ireland scrumhalf. The try proved to be crucial as Munster won by 23 - 19 to lift the European Cup in Cardiff.
</p>
<!-- add the correct class here -->
<h3 class="computing-history">The first Programmer</h3>
<p>
Ada Lovelace was an English mathematician and writer, chiefly known for her work on Charles Babbage's proposed mechanical general-purpose computer, the Analytical Engine. She was the first to recognise that the machine had applications beyond pure calculation, and published the first algorithm intended to be carried out by such a machine. As a result, she is sometimes regarded as the first to recognise the full potential of a "computing machine" and the first computer programmer.
</p>
<!-- add the correct class here -->
<h3 class="computing-history">The first Compiler</h3>
<p>
Grace Hopper was an American computer scientist and United States Navy rear admiral. One of the first programmers of the Harvard Mark I computer, she was a pioneer of computer programming who invented one of the first compiler related tools.
</p>
</body>
</html>