diff --git a/about.html b/about.html new file mode 100644 index 000000000..23f67aa1b --- /dev/null +++ b/about.html @@ -0,0 +1,61 @@ + + + + + + + + Georgia Adam + + + + + + + + + +
+

Georgia Adam

+

Software Engineering Student @ Ada Developers Academy

+
+ +
+

+ About me. +

+
+ +
+
Pawprint
+
Matcha
+

Dog lover. Matcha drinker.

+
+ +
+

Contact

+ +
+ + + + + \ No newline at end of file diff --git a/assets/amanda-frank-qLfyTluVZAY-unsplash.jpg b/assets/amanda-frank-qLfyTluVZAY-unsplash.jpg new file mode 100644 index 000000000..bfe8b1245 Binary files /dev/null and b/assets/amanda-frank-qLfyTluVZAY-unsplash.jpg differ diff --git a/assets/forest.png b/assets/forest.png new file mode 100644 index 000000000..244619f7d Binary files /dev/null and b/assets/forest.png differ diff --git a/assets/linkedin.png b/assets/linkedin.png new file mode 100644 index 000000000..09f129a81 Binary files /dev/null and b/assets/linkedin.png differ diff --git a/assets/matcha.png b/assets/matcha.png new file mode 100644 index 000000000..66f856987 Binary files /dev/null and b/assets/matcha.png differ diff --git a/assets/notepad-transparent-background-1.png b/assets/notepad-transparent-background-1.png new file mode 100644 index 000000000..26ee63660 Binary files /dev/null and b/assets/notepad-transparent-background-1.png differ diff --git a/assets/square.png b/assets/square.png new file mode 100644 index 000000000..4b9365d84 Binary files /dev/null and b/assets/square.png differ diff --git a/assets/track.png b/assets/track.png new file mode 100644 index 000000000..47b0dfa14 Binary files /dev/null and b/assets/track.png differ diff --git a/index.html b/index.html new file mode 100644 index 000000000..010b6a82f --- /dev/null +++ b/index.html @@ -0,0 +1,57 @@ + + + + + + + + Georgia Adam + + + + + + + + + +
+

Georgia Adam

+

Software Engineering Student @ Ada Developers Academy

+
+ +
+

+ I am student software engineer currently learning and growing at Ada Developers Academy. + Presently, I am most interested in backend development and hardware programming. However, I am always open to learning more about + what can be created with code. Please reach out! I am open to new connections and would love to learn something new.
+
+ Feel free to check out my work on the portfolio page. I also talk about my interests outside of programming on the about page. +

+
+ +
+

Contact

+ +
+ + + + + \ No newline at end of file diff --git a/pages/about.html b/pages/about.html deleted file mode 100644 index b4ae215c4..000000000 --- a/pages/about.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Document - - - - - \ No newline at end of file diff --git a/pages/index.html b/pages/index.html deleted file mode 100644 index b4ae215c4..000000000 --- a/pages/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Document - - - - - \ No newline at end of file diff --git a/pages/portfolio.html b/pages/portfolio.html deleted file mode 100644 index b4ae215c4..000000000 --- a/pages/portfolio.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Document - - - - - \ No newline at end of file diff --git a/portfolio.html b/portfolio.html new file mode 100644 index 000000000..de3166bd3 --- /dev/null +++ b/portfolio.html @@ -0,0 +1,60 @@ + + + + + + + + Georgia Adam + + + + + + + + + +
+

Georgia Adam

+

Software Engineering Student @ Ada Developers Academy

+
+ +
+

+ Please find a selection of projects I have worked on below. +

+
+ +
+

Task List

Flask API

+

Book Review Site

HTML/CSS

+

Swap Meet

Python OOP

+

Viewing Party

Python

+
+ +
+

Contact

+ +
+ + + + + \ No newline at end of file diff --git a/styles/about.css b/styles/about.css new file mode 100644 index 000000000..4b0140771 --- /dev/null +++ b/styles/about.css @@ -0,0 +1,36 @@ +.grid_container { + width: auto; + height: auto; + display: grid; + grid-template: 0.25fr 1fr / 1fr 3fr; + margin-right: 30%; +} + +.grid_container > div { + padding: 50px; +} + +#bio { + grid-column: 2; + grid-row: 1 / 3; + padding-left: 30px; + padding-top: 12%; + font-size: x-large; + background: url(/assets/notepad-transparent-background-1.png); + background-repeat: no-repeat; + background-position: top; + background-size: cover; + border-left: 4px solid black; + font-family: cursive; +} + +#about_me { + margin-left: 2px; + margin-right: 30%; + padding-bottom: 10px; + font-size: large; +} + +#paw { + border-bottom: 4px solid black; +} \ No newline at end of file diff --git a/styles/index.css b/styles/index.css new file mode 100644 index 000000000..c4392787c --- /dev/null +++ b/styles/index.css @@ -0,0 +1,5 @@ +#welcome { + font-size: large; + margin-left: 2px; + margin-right: 30%; +} \ No newline at end of file diff --git a/styles/portfolio.css b/styles/portfolio.css new file mode 100644 index 000000000..00886eacd --- /dev/null +++ b/styles/portfolio.css @@ -0,0 +1,32 @@ +.flex_container { + display: flex; + flex-direction: row; + flex-wrap: wrap; + margin-right: 30%; + justify-content: space-between; + align-items: center; + border: 4px solid black; + background-color: grey; +} + +.flex_container > div { + border: 4px solid black; + width: 150px; + height: 150px; + margin: 2px; + flex: 1 1 auto; + padding: 50px; + text-align: center; + background-color: whitesmoke; +} + +.flex_container h3 { + text-decoration: overline; +} + +#blurb { + margin-left: 2px; + margin-right: 30%; + padding-bottom: 10px; + font-size: large; +} \ No newline at end of file diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 000000000..4f03a45a3 --- /dev/null +++ b/styles/style.css @@ -0,0 +1,49 @@ +* { + font-family: monospace; +} + +ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +ul > li { + display: inline-block; +} + +nav { + padding-top: 10px; + padding-bottom: 15px; + margin-right: 30%; + margin-left: 2px; +} + +header { + background: url(/assets/amanda-frank-qLfyTluVZAY-unsplash.jpg); + background-repeat: no-repeat; + background-size: cover; + background-position: center; + border: 4px solid black; + color: #ffffff; + text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; + padding-top: 40px; + padding-bottom: 40px; + padding-left: 10px; + margin-right: 30%; +} + +.contact { + margin-left: 2px; + margin-right: 30%; + padding-top: 20px; +} + +.contact > h3 { + text-decoration: underline; +} + +footer { + margin-left: 2px; + margin-right: 30%; +} \ No newline at end of file