-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (77 loc) · 4.01 KB
/
index.html
File metadata and controls
88 lines (77 loc) · 4.01 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home – G. Mark Kanyer Portfolio</title>
<link rel="icon" type="image/png" href="images/headshot1.png">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Site Title -->
<div class="site-title">
<h1>G. Mark Kanyer Portfolio</h1>
</div>
<!-- Navigation -->
<nav>
<a href="index.html"><i class="fas fa-home"></i> Home</a>
<a href="about.html"><i class="fas fa-user"></i> About</a>
<a href="resume.html"><i class="fas fa-file-alt"></i> Resume</a>
<a href="experience.html"><i class="fas fa-briefcase"></i> Experience</a>
<a href="contact.html"><i class="fas fa-envelope"></i> Contact</a>
<a href="blog.html"><i class="fas fa-comment-dots"></i> Blog</a>
</nav>
<!-- Main Content -->
<div class="content">
<h2>Welcome to My Website!</h2>
<div class="intro-container">
<div class="intro-text">
<p>Hello! My name is <em>George</em> <strong>Mark Kanyer</strong>, and I am an a<em> Master of Science in Business Analytics</em> <strong>(MSBA)</strong> student at the <em>University of Washington</em> <strong>(UW)</strong>, graduating during June 2026.</p>
<p>I am also a recent Business Administration graduate with a concentration in Marketing and Data Analytics minor from UW, with over a year of relevant Marketing experience from internships and on-campus jobs.</p>
<p>This website showcases my professional Marketing journey, from projects to work experience, and community involvement. Check out my <strong>About</strong> and <strong>Experience</strong> pages to learn more about my background and goals, and let’s get in touch!</p>
</div>
<img src="images/headshot1.png" alt="Picture" class="profile-pic" id="profilePic">
</div>
<!-- Skills Section -->
<div class="skills-section">
<h3>Top Skills</h3>
<ul>
<li><strong>Marketing Strategy</strong> – Developing data-driven campaigns to meet business goals.</li>
<li><strong>Social Media Strategy & Content Creation</strong> – Building brand presence through engaging content.</li>
<li><strong>Graphic & Web Design</strong> – Designing visually compelling graphics and responsive websites.</li>
<li><strong>User Interface & User Experience (UI/UX) Design</strong> – Creating intuitive, user-friendly digital experiences.</li>
<li><strong>Copywriting</strong> – Writing persuasive marketing copy for digital and print media.</li>
<li><strong>Data Analytics</strong> – Using analytics tools to track performance and inform decisions.</li>
<li><strong>Design</strong> – Overall eye for visual aesthetics, branding, and layout composition.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Lightbox Overlay -->
<div class="lightbox" id="lightbox">
<img src="images/headshot1.png" alt="Enlarged Picture">
</div>
<!-- Footer -->
<footer class="contact-footer">
<h3><strong>Contact</strong></h3>
<div class="footer-links">
<a href="mailto:Markkanyer@yahoo.com"><i class="fas fa-envelope"></i> Email</a>
<a href="https://www.linkedin.com/in/markkanyer/" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a href="https://github.com/Markkanyer" target="_blank"><i class="fab fa-github"></i> GitHub</a>
<a href="https://tacomauw.joinhandshake.com/profiles/markkanyer" target="_blank"><i class="fas fa-h-square"></i> Handshake</a>
</div>
</footer>
<!-- Lightbox Script -->
<script>
const profilePic = document.getElementById("profilePic");
const lightbox = document.getElementById("lightbox");
profilePic.addEventListener("click", () => {
lightbox.classList.add("show");
});
lightbox.addEventListener("click", () => {
lightbox.classList.remove("show");
});
</script>
</body>
</html>