diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..e7ea2b8e8 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "python.testing.pytestArgs": [ + "pages" + ], + "python.testing.unittestEnabled": true, + "python.testing.pytestEnabled": false, + "python.testing.unittestArgs": [ + "-v", + "-s", + "./pages", + "-p", + "*test*.py" + ] +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 000000000..91b572b35 --- /dev/null +++ b/index.html @@ -0,0 +1,51 @@ + + + + + + + Adah's Personal Portfolio + + + + + +
+
+ +
+ +
+

Hi, my name is Adah Hailemaraim. If you'd like to learn more about me, you can do so on the about me page. If you'd like to see some of my work, you can head over to my portfolio page! If you like what you see, feel free to contact me!

+
+
+ + + + + + + + \ No newline at end of file diff --git a/pages/about.html b/pages/about.html index b4ae215c4..b7dda9d19 100644 --- a/pages/about.html +++ b/pages/about.html @@ -6,7 +6,24 @@ Document + +
Adah Hailemariam
+ +

A Little Bit About Me

+ +

+ I love to code. hahah +

+ - +
+ +
\ 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 index b4ae215c4..7b362a0bf 100644 --- a/pages/portfolio.html +++ b/pages/portfolio.html @@ -7,6 +7,24 @@ Document - + +
Adah Hailemariam +

+ Some Projects I've Worked On +

+
+ +My Github! + + +
+ +
\ No newline at end of file diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 000000000..573b42d2e --- /dev/null +++ b/styles/style.css @@ -0,0 +1,43 @@ +body { + font-family: sans-serif; + background-color: #009e9e; +} + +h1 { + text-decoration: underline; + text-align: center; +} + +p { + line-height: 150%; + color: darkslategrey; +} + + + +.name{ + font-family:Arial, Helvetica, sans-serif; +} + +.container { + width: 60vw; + height: 100vh; + + display: grid; + grid-template: 15% auto 20% / 1fr 3fr; +} + +.intro{ + font-size: 400%; + grid-row: auto / span 2; + display: flex; +} + +.site-header { + display: flex; + grid-column: auto / span 2; +} + +.nav { + grid-row: auto / span 2; +} \ No newline at end of file