-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·57 lines (49 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Khandice's Personal Website</title>
<script src="https://kit.fontawesome.com/197f5b9e01.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="../styles/stylesheet.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=Oswald:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<main class="about-me-container">
<div class="about-me">
<div class="my-photo">
<img src="/images/SquarePicPortfolio.png" class="personal-pic"
alt="black and white photo of Khandice wearing glasses">
</div>
<div class="contact-links">
<a href="mailto:[email protected]" class="contact-link"> Contact me </a>
<a class="contact-link" href="https://github.com/khandices" target="_blank">GitHub</a>
<a class="contact-link" href="https://www.linkedin.com/in/khandice-schuhmann/" target="_blank">Linkedin</a>
</div>
</div>
<style>
.vl {
border-left: 3px double #0F271C;
height: 450px;
}
</style>
<div class="vl"></div>
<div class="about-me">
Hi, my name is Khandice. I’m a software developer and I like to create things! I currently work with an
awesome team at Indeed on developing the Indeed Virtual Interviewing tool. In a past life, I was a social
worker, so writing clean, accessible code is important to me.
In my free time, I experiment with different mediums to create visual works of art. I’m a student of life,
which means I’m always learning something new.
Want to collaborate on a project, or enjoy my work?
Send me an email.
I hope something good happens to you today. ✨
</div>
</main>
<footer>
<h5> Made with ♥ Khandice Schuhmann © 2023</h5>
</footer>
</body>
</html>