-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (65 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="A website showcasing Jessica Cannon's Online Resume">
<link type="text/css" rel="stylesheet" href="home/index.css">
<title>Home | Resume</title>
</head>
<body>
<div id="page-wrapper">
<!--Header starts-->
<header>
<h1>Jessica Cannon</h1>
<p>My Online Resume</p>
</header>
<!--Header end-->
<div id="container">
<!--Navigation Start-->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="activities/activities.html">Activities</a></li>
<li><a href="education/education.html">Education</a></li>
<li><a href="experience/experience.html">Experience</a></li>
<li><a href="projects/projects.html">Projects</a></li>
<li><a href="references/references.html">References</a></li>
</ul>
</nav>
<!--Navigation End-->
<!--Manin Content start-->
<main>
<!--One Column start-->
<h3 id="main-title">Home</h3>
<!-- Two-column layout for profile-pic and career-object-->
<div id="main">
<div id="main-image">
<img id="profile-image" src="home/my_profile_pic.jpg" alt="Jessica Cannon">
</div>
<div id="main-text">
<p>
My name is Jessica Cannon, and I am a current undergraduate student at Boston University
majoring in Data Science with a minor in Computer Science. I aspire to utilize my knowledge and skills in
programming, data analytics, visualization, and machine learning to make a difference.
</p>
</div>
</div>
<!-- End of two column-->
<p>
Welcome to my website! Here, you will find plenty of information about me
that might be useful to you. This includes my educational and employment
history, my activities on and off campus, my relevant projects, and my
references.
</p>
<!--One Column end-->
</main>
<!--Main Content End-->
</div>
<!--Footer start-->
<footer>
<p>All Rights Reserved by Jessica Cannon <a href="../credits/credits.html"> Credits</a> ©</p>
</footer>
<!--Footer End-->
</div>
</body>
</html>