-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (68 loc) · 3.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Personal Website Home</title>
<link rel= "stylesheet" type="text/css" href= "style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<header id= "main-header">
<div class= "container">
<h1>Angelos Skiadopoulos Personal Website</h1>
</div>
</header>
<nav id= "navbar">
<div class= "container">
<ul>
<li><a href="#"><i class="fas fa-home" title="Home"></i></a></li>
<li><a href="my-profile.html"><i class="fas fa-user-circle" title="My Profile"></i></a></li>
<li><a href="code-portfolio.html"><i class="fas fa-code" title="Code Portfolio"></i></a></li>
<li><a href="contact-info.html"><i class="fas fa-info-circle" title="Contact Info"></i></a></li>
<li><a href="send-email.html"><i class="fas fa-envelope" title="Send Email"></i></a></li>
<li><a href="https://gr.linkedin.com/in/askiadopoulos"><i class="fab fa-linkedin" title="Linkedin"></i></a></li>
<li><a href="http://github.com/askiadopoulos"><i class="fab fa-github" title="GitHub"></i></a></li>
</ul>
</div>
</nav>
<section id= "showcase">
<div class= "container">
<h1>Career Summary</h1>
<h2>
Information Technology Engineer/Specialist offering over 18 years of experience providing technical expertise and support
to utilizing an array of technology and software programs. Key achievements include a massive number of project
implementation in all major business sectors, involving Information Systems and Embedded Automation Systems.
</h2>
</div>
</section>
<div class= "container">
<section id= "main">
<h1>More Information</h1>
<p>
Visitors have the opportunity to find more information about my personal profile through the available menu options above.
Bellow topics are describe what you can do with the navigation menu.
</p>
<ul>
<li>Personal Profile: Provides a brief description about my personal interests, goals, career objectives.</a></li>
<li>Code Portfolio: Contains my business portfolio such as workshops, projects, code snippets, etc.</a></li>
<li>Contact Information: My contact information such as email, phone, etc.</a></li>
<li>Email: You can send me an email.</a></li>
<li>Linkedin: Have access on my Linkedin profile</a></li>
<li>GitHub: Find code blocks on my GitHub account</a></li>
</ul>
</section>
<aside id= "sidebar">
<p>
Latest Update: At the moment i am attending a six-month training course with the title: 'Full-Stack .NET Developer'.
The duration of the program is from the 4rth of Feb till the 2nd of August. Through this journey, i hope to become a
good and useful programmer as well as a valuable member that can be trusted by his team.
</p>
</aside>
</div>
<footer id= "main-footer">
<p>Copyright © 2019 Public Project Inc.</p>
</footer>
</body>
</html>