-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (78 loc) · 4.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jubilee Austen | Portfolio</title>
<link rel="stylesheet" href="css/normalize.css" >
<link rel="stylesheet" href="css/main.css" >
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="homepage-hero">
<div class="content-wrapper">
<h1>Jubilee Austen</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="projects/index.html">Projects</a></li>
</ul>
</nav>
<h2>Hi, I'm a developer that loves clean & elegant code.</h2>
</div>
</header>
<main>
<section id="about">
<div class="content-wrapper">
<h2>A little bit about me.</h2>
<p>My tech journey started with a degree in journalism. I loved researching, writing, and sharing my voice online, but something felt missing. I wished for a way to share and display information exactly the way I wanted. That's when I discovered and fell in love with coding and web design!</p>
<p>As a front end developer, I pride myself on writing code that's easy to read and build upon while still looking great. My goal with every site is to provide a top-of-the-line user experience. Besides web development, I enjoy gardening and spending time with my small (but growing!) family.</p>
</div>
</section>
<section id="skills">
<div class="content-wrapper">
<h2>Developer Skills</h2>
<div class="skill-list">
<img src="img/html-icon.png" alt="html-icon">
<h3>HTML & CSS</h3>
<p>I pride myself on my organized and well-formatted HTML and CSS. All my code is tested to ensure it's valid, accessible for all users, and works great on the major browsers.</p>
</div>
<div class="skill-list">
<img src="img/pencil-icon.png" alt="pencil-icon">
<h3>Design to Code</h3>
<p>If you have a design, I can turn it into a website! I'll use the exact colors, fonts, and imagery you need. You provide the design comp, and I'll code up a site just for you.</p>
</div>
<div class="skill-list">
<img src="img/git-icon.png" alt="git-icon">
<h3>Git & GitHub</h3>
<p>I never work on a project without my best friends Git and GitHub! I can collaborate with your team on any codebase and adjust to your team's version control workflow.</p>
</div>
</div>
</section>
</main>
<footer id="contact">
<div class="content-wrapper">
<div class="contact-image">
<img src="img/jess-bailey-q10VITrVYUM-unsplash.jpg" alt="desk with keyboard, glasses, pen and notebook" id="contact-pic">
</div>
<div class="contact-info">
<h2>Like What You See?</h2>
<h3 id="email-header">Let's meet up for a cup of coffee.</h3>
<a href="mailto:hi@jubileeausten.com"><img src="img/envelope.png" alt="envelope icon" id="envelope">hi@jubileeausten.com</a>
<h3 id="socialmedia-header">Or, follow me on social media.</h3>
<ul>
<li><a href="https://twitter.com/" target="_blank"><img src="img/twitter.png" alt="Twitter icon"></a></li>
<li><a href="https://facebook.com/" target="_blank"><img src="img/facebook.png" alt="Facebook icon"></a></li>
<li><a href="https://instagram.com/" target="_blank"><img src="img/instagram.png" alt="Instagram icon"></a></li>
<li><a href="https://linkedin.com/" target="_blank"><img src="img/linkedin.png" alt="LinkedIn icon"></a></li>
<li><a href="https://github.com/" target="_blank"><img src="img/github.png" alt="GitHub icon"></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>