-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
188 lines (172 loc) · 5.73 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Jubilee Austen | Portfolio</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/normalize.css" />
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700"
rel="stylesheet"
type="text/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;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Lora:400,700"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<header>
<div class="full-width">
<div class="half-width">
<h1>Jubilee Austen</h1>
</div>
<div class="half-width">
<nav>
<ul>
<li>
<a href="#about">About </a>
</li>
<li>
<a href="#work">Work </a>
</li>
<li>
<a href="#contact">Contact </a>
</li>
</ul>
</nav>
</div>
<h2>
<span>Hi,</span>
I'm a coder who loves to build apps!
</h2>
</div>
</header>
<main>
<section id="about">
<div class="full-width">
<h2>A little bit about me.</h2>
<div class="half-width">
<p>
I’ve made my home base in Providence, Rhode Island, with my small
growing family. My journey into tech started with a degree in
journalism. As I started sharing my writing online, I was
fascinated with how easily I could get my voice out there. I was
hooked and wanted to learn how to build my own site to fit my own
specific needs.
</p>
</div>
<div class="half-width">
<p>
That curiosity then opened a door that could never be shut. When I
learned how to build my first website, I realized I found
something that gave me the freedom & versatility I was looking for
in my work. Now I’ve made a full switch to front-end development,
where I can use my organization skills and eye for detail to write
clean, elegant code.
</p>
</div>
</div>
</section>
<section id="work">
<div class="full-width">
<div class="third-width">
<a href="#html-icon">
<img src="img/html-icon.png" alt="HTML icon" />
</a>
<h3>Hand-Coded HTML</h3>
<p>
My focus is writing clean, well-formatted, semantic HTML5 by hand
to make sure that the content is easy to read, easy to
collaborate, trouble-shoot and accessible.
</p>
</div>
<div class="third-width">
<a href="#css-icon">
<img src="img/css-icon.png" alt="CSS icon" />
</a>
<h3>Well-Organized CSS</h3>
<p>
I pride myself on writing CSS that is easy to read and build on. I
focus on keeping my CSS lean and fast to load, and I make it a
habit to stay up to date on current best practices.
</p>
</div>
<div class="third-width">
<a href="#pencil-icon">
<img src="img/pencil-icon.png" alt="pencil-icon" />
</a>
<h3>Ease Converting Designs into Code</h3>
<p>
You can trust me to take a designer’s PSD and quickly & accurately
convert it into a webpage that is pixel-perfect match.
</p>
</div>
</div>
</section>
<footer id="contact">
<div class="full-width">
<div class="half-width">
<div id="contact-img">
<img
src="img/contact-image.png"
alt="Person sitting at a white table with an Mac book and paper and a pencil "
/>
</div>
</div>
<div class="half-width">
<h2>Like what you see?</h2>
<div id="email-header">
<h3>Let’s meet for a cup of coffee.</h3>
</div>
<div id="envelope">
<img src="img/envelope.png" alt="envelope" />
<div class="email">
<a href="mailto:[email protected]">
hi [@] jubileeausten.com</a
>
</div>
</div>
<div id="socialmedia-header">
<h3>Or find me on the interwebs!</h3>
</div>
<ul>
<li>
<a href="https://tumblr.com">
<img src="img/tumblr.png" alt="Tumbler" />
</a>
</li>
<li>
<a href="https://twitter.com/">
<img src="img/twitter.png" alt="Twitter" />
</a>
</li>
<li>
<a href="https://instagram.com">
<img src="img/instagram.png" alt="Instagram" />
</a>
</li>
<li>
<a href="https://linkedin.com">
<img src="img/linkedin.png" alt="Linkedin" />
</a>
</li>
<li>
<a href="https://github.com">
<img src="img/github.png" alt="Github" />
</a>
</li>
</ul>
</div>
</div>
</footer>
</main>
</body>
</html>