forked from ada-c17/personal-portfolio-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (67 loc) · 2.19 KB
/
index.html
File metadata and controls
67 lines (67 loc) · 2.19 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
<!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>Home | Julie Warren</title>
<link rel="stylesheet" href="style.css" />
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon/site.webmanifest">
<link rel="mask-icon" href="./assets/favicon/safari-pinned-tab.svg" color="#087e8b">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="theme-color" content="#ffffff">
</head>
<body class="home-page">
<!-- navigation bar -->
<header class="home-header">
<nav class="nav-container">
<a href="index.html">
<img id="nav-logo" alt="logo of initials J A W enclosed in a circle" src="./assets/images/JAW.png">
</a>
<ul class="nav-buttons">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="pages/about.html">About</a>
</li>
<li>
<a href="pages/portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
</header>
<!-- main body -->
<main class="main-container-home">
<div class="left-side-container">
<h1>
Julie Anne Warren
</h1>
<h2>
MA → WA
<br>
Rowing Coach → Full Stack Software Engineer
</h2>
<div class="logo-container">
<a href="https://github.com/jawarren89">
<img id=github alt="Github logo" src="./assets/icons/GitHubLight.png">
</a>
<a href="https://www.linkedin.com/in/jawarren89/">
<img id=linkedin alt="LinkedIn logo" src="./assets/icons/linkedin.png">
</a>
</div>
</div>
<div class="right-side-container">
<img id=headshot alt="Headshot of Julie Warren" src="./assets/images/headshot.jpg">
</div>
</main>
<!-- footer -->
<footer>
© 2022 | Thanks for visiting!
</footer>
</body>
</html>