-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (92 loc) · 3.94 KB
/
index.html
File metadata and controls
95 lines (92 loc) · 3.94 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Adam Yednak Home</title>
<meta name="description" content="Adam Yednak Home">
<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="index">
<a class = "banner-link" href="https://ubisense.com/avail-engage-video/" target="_blank"><div class="top-image-banner"></div></a>
<div class="card-grid">
<a href="about.html">
<div class="card">
<img src="/SDEV153/About.png" alt="About card">
<h3><b>About Me</b></h3>
</div>
</a>
<a href="resume.html">
<div class="card">
<img src="/SDEV153/Resume.png" alt="Resume card">
<h3><b>Resume</b></h3>
</div>
</a>
<a href="education.html">
<div class="card">
<img src="/SDEV153/Education.png" alt="Education card">
<h3><b>Education</b></h3>
</div>
</a>
<a href="certifications.html">
<div class="card">
<img src="/SDEV153/Certifications.png" alt="Certifications card">
<h3><b>Certifications</b></h3>
</div>
</a>
<a href="projects.html">
<div class="card">
<img src="/SDEV153/Projects.png" alt="Projects card">
<h3><b>Projects</b></h3>
</div>
</a>
<a href="portfolio.html">
<div class="card">
<img src="/SDEV153/Portfolio.png" alt="Portfolio card">
<h3><b>Portfolio</b></h3>
</div>
</a>
</div>
</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>