-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
68 lines (66 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="Portfolio" content="Portfolio">
<meta name="keywords" content="Portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Judith Kraziewicz</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/fontawesome.min.css"
integrity="sha512-RvQxwf+3zJuNwl4e0sZjQeX7kUa3o82bDETpgVCH2RiwYSZVDdFJ7N/woNigN/ldyOOoKw8584jM4plQdt8bhA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/solid.min.css"
integrity="sha512-uj2QCZdpo8PSbRGL/g5mXek6HM/APd7k/B5Hx/rkVFPNOxAQMXD+t+bG4Zv8OAdUpydZTU3UHmyjjiHv2Ww0PA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/brands.min.css"
integrity="sha512-+oRH6u1nDGSm3hH8poU85YFIVTdSnS2f+texdPGrURaJh8hzmhMiZrQth6l56P4ZQmxeZzd2DqVEMqQoJ8J89A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav id="navbar-example2" class="navbar px-3 mb-3">
<h1>Judith Kraziewicz <span class="badge">Software Engineer</span></h1>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="joining.html">Joining Your Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="open.html">Open To Clients</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="container text-center mb-5 mt-0 position-absolute bottom-25 end-0">
<div class="row">
<div class="col-6">
<div class="card">
<div class="ms-3 mt-3">
<img src="./images/editedNewProfile.jpeg" class="img-fluid rounded-start" alt="profile">
</div>
<h5 class="card-title mt-3">About Judith Kraziewicz</h5>
<div class="card-body">
<p>Hi, I'm Judith, a full stack engineer located in Edinburgh, Scotland. As far back as I can remember, I have always been surrounded by tech-savvy people in my social environment; be it
programmers, graphic designers or other IT support. Naturally, because of their influence, I too am
tech-savvy. In my previous business administration roles I was the go-to person when colleagues needed
help understanding their applications.</p>
<p>I presently work in the hospitality sector with a high-tech delivery service that has implemented a
trackable just-in-time methodology.
The experience working with all the apps that I have made led me to looking for more creative
opportunities to build and develop my own products as a part of a team.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>