diff --git a/Contact_Form.html b/Contact_Form.html new file mode 100644 index 0000000..507b6ca --- /dev/null +++ b/Contact_Form.html @@ -0,0 +1,48 @@ + + + + + CONTACT FORM + + + +

Contact form

+
+
+

Contact information

+
+
+
+
+
+
+
+
+ +

How did you hear about us

+ + Please check which applies: + +

Skill set of interest

+ Check on of your skills in the box :
+ Programing
+ HelpDesk
+ DesktopSupport
+ DataAnalyst
+ +
Comments
+ + +
+ + + +
+ + + \ No newline at end of file diff --git a/images/profilepic.jpg b/images/profilepic.jpg new file mode 100644 index 0000000..c227067 Binary files /dev/null and b/images/profilepic.jpg differ diff --git a/resume.html b/resume.html new file mode 100644 index 0000000..6496d23 --- /dev/null +++ b/resume.html @@ -0,0 +1,86 @@ + + + + + Fotini's Resume + + + + +
+ + +
+
+
+
+ +

Fotini


+
+
+
+
+

About me


+

Objective

+

Currently aiming on completing Code Differently's 12 week coding and programming bookcamp

+

Interested in learning more about coding and programming

+

As of this stage of my learning journey, I am interested in creating my own little corner on the web, executing a website that is a combination of instagram and twitter.

+ + +

Professional Experience

+
+

Education

+
    +
  • Bachelor's of Science, Accounting
  • + +
+

Skills

+ +
    +
  • HTML, CSS, JavaSript - 2020
  • +
+
+
+
+
+
+

Contact Me

+

You can find me on:

+ + + +
+
+
+ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..1514b5e --- /dev/null +++ b/style.css @@ -0,0 +1,84 @@ +body { + margin-top: 50px; + margin: 0; + font-family: Helvetica Neue; + background-color: rgb(183, 240, 240); +} + +header { + display: flex; + position: fixed; + top: 0; + left: 0; + right: 0; + height: 50px; + line-height: 50px; + background-color: rgb(137, 223, 223); + font-size: 2em; +} + +header * { + display: inline; + height: 50px; +} + +header ul { + padding: 0; +} + +header li { + margin-left: 20px; +} + +section { + height: 100vh; + + display: flex; + justify-content: center; + align-items: center; + text-align: center; + + background-size: cover; /* Add this line */ + background-position: center center; /* Add this line */ + background-repeat: no-repeat; /* Add this line */ + background-attachment: fixed; /* Add this line */ +} + +#hero .profile-img { + width: 200px; + height: 200px; + border-radius: 50%; + padding: 100px; + margin-top: 100px; +} + +footer { + text-align: center; + padding: 50px; +} + +#hero h1 { + font-size: 3em; + font-family: Helvetica Neue; + font-weight: 350; +} + +#hero h2 { + font-size: 25px; + font-family: Helvetica Neue; + font-weight: 300; +} + +section h2 { + font-size: 2.5em; +} + +section h3 { + font-size: 1.5em; +} + +header a { + text-decoration: none; + color: black; +} +