-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathachievements.html
67 lines (54 loc) · 2.18 KB
/
achievements.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
<!DOCTYPE html>
<html lang="en">
<link href="https://fonts.googleapis.com/css?family=Pattaya&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=CuprumPermanent+MarkerTeko&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Arvo&display=swap" rel="stylesheet">
<!-- This is the head -->
<head>
<meta charset="utf-8"/>
<title> Athena Raya: GraceHopper </title>
<style>
@import url("css/style.css");
</style>
</head>
<body>
<!-- This is the body -->
<!-- This is where we place the content of our website -->
<header>
<h1>
Grace hopper Achivemnets
</h1>
</header><!-- defines a semantic section as a header -->
<hr />
<nav><!-- defines a semantic section as a navigation menu-->
<a href="index.html">Home</a><!-- create a hyperlink -->
<a href="education.html">Education</a>
<strong> <a href="achievements.html">Achivemnets</a> </strong>
<a href="impact.html">Impact</a>
</nav>
<main>
<figure>
<img src="img/YaleNews_hopper-grace.jpg" alt="Picure of GraceHopperearly days"/><br><br>
<div>
<q><i>The most damaging phrase in the language is: `It's always been done that way.</i></q> <br>
<sup> - Grace Hopper </sup>
</div>
</figure>
<p class="important">
Grace hopper Achivemnets are best known for her legacy of innovation and <br>
contributions to computer programming, software development and the the <br>
design and implemention of programming languages. <a href=https://www.biography.com/scientist/grace-hopper>for more information</a>
</p>
</main>
<footer>
<hr> <!-- defines a thematic change in content -->
CST336 Internet Programming. 2019© Raya <br/>
<strong>Disclaimer:</strong> The information is be fictitious and
It is used for academic purpposes only.
<div>
<img src="img/csumb.png" alt="Logo of CSUMB"/>
</div>
</footer>
</body>
<!-- closing body -->
</html>