-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
86 lines (86 loc) · 2.65 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jeko's Portfolio Website</title>
<link
rel="icon"
type="image/x-icon"
href="./assets/icons/icons8-user-16.png"
/>
<!-- Google fonts start -->
<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=Libre+Baskerville:wght@700&family=Nunito:ital@0;1&family=Rubik+Mono+One&display=swap"
rel="stylesheet"
/>
<!-- Google fonts end -->
<link rel="stylesheet" href="./styles/reset.css" />
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body>
<header>
<span class="logo"><a href="./index.html">Jeko_92</a></span>
<nav>
<ul>
<li>
<a class="main-nav-item" href="./index.html#about-me">About me</a>
</li>
<li>
<a class="main-nav-item" href="./index.html#projects">Projects</a>
</li>
<li>
<a class="main-nav-item" href="./index.html#skills">Skills</a>
</li>
<li>
<a class="main-nav-item" href="./contact.html">Contact me</a>
</li>
</ul>
</nav>
</header>
<main class="contact-me-main">
<h2>Contact me</h2>
<p>
Want to say hi or have an interesting project? I would love to hear
about it!
</p>
<ul class="contact-icons">
<li>
<a href="https://mail.google.com/" target="_blank">
<img src="./assets/icons/SVG/gmail.svg" alt="Contact-Gmail" />
</a>
</li>
<li>
<a href="https://linkedin.com/" target="_blank">
<img src="./assets/icons/SVG/linkedin.svg" alt="Contact-LinkedIn" />
</a>
</li>
<li>
<a href="https://github.com/" target="_blank">
<img src="./assets/icons/SVG/github.svg" alt="Contact-Github" />
</a>
</li>
</ul>
</main>
<footer>
<p>
Created by
<span id="author"
><a href="https://github.com/Jeko92" target="_blank">Jeko92</a></span
>
as a part of
<span id="codecademy"
><a href="https://www.codecademy.com" target="_blank"
>CodeCademy</a
></span
>'s
<a href="https://www.codecademy.com" class="footer-link" target="_blank"
>Front-End Engineer Career Path</a
>
All rights reserved©. 2023
</p>
</footer>
</body>
</html>