-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (65 loc) · 3.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sheryl Darroch's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Sheryl Darroch</li>
<li><a href="index.html" class="selected">Home</a></li>
<li><a href="experience.html">My Work</a></li>
</ul>
</div>
<header>
<img src="images/me.jpg" alt="Photograph of Sheryl Darroch" class="profile-image">
<h1 class="tag name">Hey! My name is Sheryl.</h1>
<p class="tag location">I'm a mid-western girl, born and raised in the mitten state.</p>
</header>
<main class="flex">
<div class="card">
<img src="images/pushpinblue.png" alt="pushpin clipart" class="clipArt">
<h2>Background</h2>
<p>I am new to the tech world, but getting quite a kick out of learning all of these cool techniques. I have always loved to create beautiful and functional things, so building responsive web designs is a perfect fit.</p>
<p>I am a jack of all trades and a Licensed Master Social Worker. I have extensive experience in non-profit management, working with individuals with special needs, and providing services to seniors with dementia. I am happily married, and we have been blessed with two amazing kids. My happy place is floating in the sunshine on an inland lake.</p>
</div>
<div class="card">
<img src="images/pushpinblue.png" alt="pushpin clipart" class="clipArt">
<h2>Hobbies</h2>
<p>When I'm not creating beautiful web designs or learning new coding skills, I may be:</p>
<ul>
<li>Baking gluten-free goodies</li>
<li>Antiquing</li>
<li>DIYing/Re-purposing</li>
<li>Spending time with family & friends</li>
<li>Hanging out at the beach</li>
</ul>
</div>
<div class="card">
<img src="images/pushpinblue.png" alt="pushpin clipart" class="clipArt">
<h2>Goals</h2>
<p>I want to make beautiful, responsive and functional web designs. I plan to start by learning all I can about the following programming languages:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Ruby</li>
<li>Rails</li>
</ul>
<p>I’d love to find a home as a full-time front-end web developer. Let's work together to make beautiful things!</p>
</div>
</main>
<footer>
<ul>
<li><a href="http://www.twitter.com/@sheryldarroch" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/sheryl-darroch-lmsw-18a90447" class="social linkedin">LinkedIn</a></li>
<li><a href="http://www.github.com/sheryldarroch" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2017, Sheryl Darroch</p>
</footer>
</body>
</html>