-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpact.html
76 lines (60 loc) · 2.47 KB
/
impact.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
<!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 world impact
</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>
<a href="achievements.html">Achivemnets</a>
<strong><a href="impact.html">Impact</a></strong>
</nav>
<br /> <br />
<main>
<figure>
<img src="img/gracehopper2019.png" alt="Gracehopper celebration" width = "450" height ="300" />
<div>
<br><br>
<q><i>Leadership is a two-way street, loyalty up and loyalty down. Respect for one's superiors; care for one's crew.</i></q> <br>
<sup>- Grace Hopper </sup>
</div>
</figure>
<p class="important">
The Grace Hopper Celebration of Women in Computing (GHC) is a <br>
series of conferences designed to bring the research career <br>
interests of women in computing to the forefront.It is the world's <br>
largest gathering of women in computing.The celebration, named after <br>
computer scientist Grace Hopper, is organized by the Anita Borg <br>
Institute for Women and Technology and the Association for Computing <br>
Machinery. <a href=https://ghc.anitab.org/2020-attend/>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>