diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/images/Seccop_Logo.png b/images/Seccop_Logo.png new file mode 100755 index 0000000..f548d58 Binary files /dev/null and b/images/Seccop_Logo.png differ diff --git a/images/Seccop_inside_design.png b/images/Seccop_inside_design.png new file mode 100755 index 0000000..c2a8951 Binary files /dev/null and b/images/Seccop_inside_design.png differ diff --git a/images/Seccop_outside_design.jpg b/images/Seccop_outside_design.jpg new file mode 100755 index 0000000..cdcc2f9 Binary files /dev/null and b/images/Seccop_outside_design.jpg differ diff --git a/images/background_image_header.jpg b/images/background_image_header.jpg new file mode 100644 index 0000000..ff66c52 Binary files /dev/null and b/images/background_image_header.jpg differ diff --git a/images/icon.png b/images/icon.png new file mode 100644 index 0000000..c26ddf6 Binary files /dev/null and b/images/icon.png differ diff --git a/images/icon.svg b/images/icon.svg new file mode 100644 index 0000000..8402dcd --- /dev/null +++ b/images/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..6531455 --- /dev/null +++ b/index.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + About Me! Umit Ilhan + + + + +
+

Umit Ilhan

+

A Wordpress & Front-end Developer

+
+ + + +
+

About Me!

+

I'm Umit Ilhan. I am from Turkey. I completed my graduate and master studies in computer engineering. After that, I started to work as a research assistant at the university where I studied graduate in Azerbaijan. Normally my background is a research & teaching assistant. I was doing research on robotics in university. I wrote my dissertation on robots' decision-making systems.2 years ago, I've changed my career like web developer.

+
+ + +
+
+

My Goals in Software Developer

+

As I mentioned above, I made a career change and my goal is to become a full stack web developer. Even though I have finished computer engineering in the past, but I have always worked on articles and teaching. I've been away from the software field for years. I know I'm just at the beginning of the this road. I'm starting all over again. I'm trying to improve it myself. I need to learn more. I'm currently a like WordPress developer, but I need a program like your program to become a full stack web developer. After I want to develop mobile application for Android and IOS devices.

+
+
+

My important skills

+
    +
  1. Learning ability
  2. +
  3. Problem-solving skills
  4. +
  5. Teamwork and collaboration
  6. +
  7. Communication skills
  8. +
  9. Analytical thinking
  10. +
  11. Creativity
  12. +
+
+
+ + +
+

My old project images

+ Seccop-Logo
+ Seccop-outside-design + Seccop-inside-design +
+ + + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..361c0c3 --- /dev/null +++ b/style.css @@ -0,0 +1,101 @@ +/* General */ +body{ + background: url(images/background_image_header.jpg) fixed; + background-size: cover; + margin: 0; + padding: 0; +} +p{ + font-size: 20px; +} + +h1, h3{ + font-family: 'Headland One', serif; +} + +h1{ + font-size: 50px; +} +h3{ + font-size: 30px; + color:#ee5253; +} +p{ + font-family: 'Roboto', sans-serif; +} +header, section{ + text-align: center; + padding: 150px 150px; +} +/* Header */ +header{ + background-color: rgb(63, 146, 191, 0.4); + padding: 250px 150px; + color: #ffffff; + +} +/* About */ +#about{ + background-color: #2e86de; + color: #fff; +} + +/* Goals And Skills */ +#goals-and-skills{ + background-color: rgb(63, 191, 184); +} + +.goals{ + color: #fff; +} +.skills ol{ + list-style: none; + padding: 0 250px; +} +.skills ol li{ + font-size: 20px; + color: #ffffff; + line-height: 25px; + border-bottom: 2px solid #ee5253; + padding: 10px; +} +.skills ol li:first-child{ + border-top: 2px solid #ee5253; +} +.skills li i{ + color: #ee5253; + float: left; +} +/* Project */ +#project{ + background-color: #2e86de;; +} +#project img{ + height: 150px; +} +#project .radius{ + border-radius: 30%; + margin-right: 30px; +} +/* Footer */ +footer{ + background-color: #576574; + text-align: center; + padding: 50px 150px; +} + +footer i{ + color: #ffffff; +} + +footer i:hover{ + color: #ee5253; +} +footer .hyf a{ + color: #ffffff; + text-decoration: none; +} + +footer .hyf a:hover{ + color: #ee5253; +} \ No newline at end of file