-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (99 loc) · 4.92 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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>
<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="GiTHub 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="organized working table with keyboard"
id="contact-img">
</div>
<div class="contact-info">
<h2>Like What You See?</h2>
<h3 id="email-header">Let’s meet for a cup of coffee.</h3>
<a href="mailto:[email protected]"><img src="img/envelope.png" alt="envelope symbol"
id="envelope">[email protected]</a>
<h3 id="socialmedia-header">Or, follow me on social media</h3>
<ul>
<li><a href="www.twitter.com" target="_blank"><img src="img/twitter.png" alt="twitter symbol"></a>
</li>
<li><a href="www.facebook.com" target="_blank"><img src="img/facebook.png"
alt="facebook symbol"></a></li>
<li><a href="www.instagram.com" target="_blank"><img src="img/instagram.png"
alt="instagram symbol"></a></li>
<li><a href="www.linkedin.com" target="_blank"><img src="img/linkedin.png"
alt="linkedin symbol"></a></li>
<li><a href="www.github.com" target="_blank"><img src="img/github.png" alt="github symbol"></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>