-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile - George McAlpine</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header class="header">
<img src="./assets/images/me_iceland.jpeg" height="100px" width="100px" alt="Picture of George McAlpine">
<h1>George McAlpine</h1>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact">Contact Me</a></li>
<li><a href="./resume.html">Resume</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h2>About Me</h2>
<p>Experienced Healthcare IT professional. Over 20 years experience in EMR implementation, optimization, and suport.</p>
</div>
</section>
<section class="work">
<div class="title">
<h2>Work</h2>
</div>
<div class="art" id="art1" onclick="location.href='https://geo-a-mac.github.io/run-buddy/'">
<h2>Run Buddy</h2>
</div>
<div class="art" id="art2" onclick="location.href='https://geo-a-mac.github.io/passwordGen/'"">Password Generator</div>
<div class="art" id="art3" onclick="location.href='https://geo-a-mac.github.io/WSA/'"">West Side Aspects</div>
<div class="art" id="art4" onclick="location.href='https://tranquil-ocean-87497.herokuapp.com/'">Indubidubly</div>
</section>
<footer id="contact">
<h2>
<a href="mailto:george.mcalpine@gmail.com">e-mail</a>
</h2>
<div>
©2022 George McAlpine
</div>
</footer>
</body>
</html>