-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
81 lines (75 loc) · 3.41 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<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>About Me</title>
<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>
<header class="header-about">
<nav class="main-nav">
<ul class="nav">
<li class="name">Karina Rogers</li>
<li><a href="index.html">Home</a></li>
<li><a href="webdev.html">Web Development</a></li>
<li><a href="photography.html">Photography</a></li>
<li><a href="marketing.html">Marketing</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>A little more about me...</h1>
<div class="flex-not">
<p>I spent 13 years as an emergency veterinary technician. Three years ago, I started an e-commerce site
selling handmade jewelry. That website was really the beginning of a new chapter in my life.</p>
<p>I bootstrapped the entire business. A full time ICU technician turned entrepreneur. I dived head
first
into
business management, website development,
marketing strategies and more. If there is anything from my background that carries over to my new
career, it's problem solving, attention to detail and a commitment to lifelong learning.</p>
<p>This quote by Walt Disney really sums up how I feel about web technologies.</p>
<blockquote>“The Best Way To Get Started Is To Quit Talking And Begin Doing.”
<cite>
<a href="https://www.briantracy.com/blog/personal-success/26-motivational-quotes-for-success/">–
Walt Disney</a>
</cite>
</blockquote>
</div>
</section>
<section class="flex-not">
<h2>Some fun facts:</h2>
<ol>
<li>I a total dog person. Super proud dog mom over here. Fur, dirt and drool are just a part of my
daily
routine.</li>
<li>I collect board games. Some of my favorites include Civilization, Eldrich Horror and Spirit
Island.
</li>
<li>My favorite drink is coffee, followed closely by red wine.</li>
</ol>
</section>
</main>
<hr>
<footer>
<aside>
<h3>Ready to start building your web page?</h3>
<p>Contact me</p>
<p><strong>Email:</strong> [email protected]</p>
</aside>
<ul>
<li><a href="https://www.linkedin.com/in/karina-rogers-8799321a7/" target="_blank"
class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/karinarogers" target="_blank" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2021, Karina Rogers</p>
</footer>
</body>
</html>