-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
64 lines (61 loc) · 2.8 KB
/
contact.html
File metadata and controls
64 lines (61 loc) · 2.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Adam Yednak Contact Me</title>
<meta name="description" content="Adam Yednak Contact Me">
<link rel="stylesheet" href="/SDEV153/styles.css">
</head>
<body>
<header class="universal-header">
<div class="flex-container">
<div>
<a href="index.html">
<h1>Adam <span style="color: cyan;">Yednak</span></h1>
<h2>IT Leader <span style="color: cyan;">&</span> Project Manager</h2>
</a>
</div>
<div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="contact">
<h2> Contact <span style="color: cyan;">Me</span></h2>
<p><a href="mailto:agyednak@gmail.com" target="_blank">AGYednak@Gmail.com</a></p>
<a href="https://www.linkedin.com/in/adam-yednak" target="_blank">
<img src="/SDEV153/LinkedIn.png" alt="LinkedIn"></a>
<a href="https://community.pmi.org/profile/adamyednak" target="_blank">
<img src="/SDEV153/PMI.png" alt="Project Management Institute"></a>
<a href="https://github.com/ayednak" target="_blank">
<img src="/SDEV153/GitHub.png" alt="GitHub"></a>
</section>
<footer class="universal-footer">
<div>
<p>Adam Yednak © 2025</p>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer" target="_blank">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="Valid CSS!">
</a>
</p>
</div>
<button onclick="window.history.back()">Back</button>
<div>
<a href="https://www.linkedin.com/in/adam-yednak" target="_blank">
<img src="/SDEV153/LinkedIn.png" alt="LinkedIn"></a>
<a href="https://github.com/ayednak" target="_blank">
<img src="/SDEV153/GitHub.png" alt="GitHub"></a>
</div>
</footer>
</body>
</html>