generated from prof-rossetti/student-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
53 lines (48 loc) · 1.42 KB
/
experience.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sammy Student | Work hard, play hard</title>
<link rel="stylesheet" href="stylesheets/sammy-style.css">
</head>
<body>
<header>
<p><a href="index.html">Sammy Student</a></p>
<nav>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="page">
<h1>Professional Experience</h1>
<ul>
<li>A list</li>
<li>... of jobs and internships</li>
<li>... with full descriptions</li>
</ul>
<button id="download-resume" type="button" name="button">Download Resume</button>
</div>
<footer>
<p>© 2021 Sammy Student |
<a href="https://github.com/prof-rossetti/student-site">source code</a>
</p>
</footer>
<script type="text/javascript">
//
// FYI: this is a website interactivity teaser...
//
//var resumeButton = document.getElementById("download-resume")
//
//function handleClick(event) {
// console.log("YOU CLICKED ME!")
// console.log(event.target)
//}
//
//resumeButton.addEventListener("click", handleClick, false)
</script>
</body>
</html>