diff --git a/ReadMe.md b/ReadMe.md index 429023981..f59cd9967 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -25,23 +25,23 @@ Portfolio websites are a great way to show off your work to friends, family, and Follow these steps to set up and work on your project: -- [ ] Create a forked copy of this project. -- [ ] Add your Team Lead as collaborator on Github. -- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!). -- [ ] Create a new branch: git checkout -b ``. -- [ ] Implement the project on your newly created `` branch, committing changes regularly. -- [ ] Push commits: git push origin ``. +- [x] Create a forked copy of this project. +- [x] Add your Team Lead as collaborator on Github. +- [x] Clone your OWN version of the repository (Not Lambda's by mistake!). +- [x] Create a new branch: git checkout -b ``. +- [x] Implement the project on your newly created `` branch, committing changes regularly. +- [x] Push commits: git push origin ``. ### Task 2: Minimum Viable Product Once your repository is set up, practice what you learned today to create a portfolio site from the wireframe of your choosing. **You may choose any of the three wireframes in the "Wireframe Options" folder above.** Your complete project should look similar to the wireframe you chose, and include all of the following elements: -- [ ] A navigation bar with `About`, `Projects`, and `Contact` that link to the corresponding pages -- [ ] Gallery of projects created with flexbox - you may use random images in place of project screenshots for now with the random image link: https://picsum.photos/ or you may use images that mean something to you -- [ ] Information about you in place of the given placeholder -- [ ] A `My Projects` button that links to the projects page -- [ ] A `Contact Me` button that links to the contact page -- [ ] Links to any social media profiles (Instagram, linkedIn, Twitter) into the footer section of your home page +- [x] A navigation bar with `About`, `Projects`, and `Contact` that link to the corresponding pages +- [x] Gallery of projects created with flexbox - you may use random images in place of project screenshots for now with the random image link: https://picsum.photos/ or you may use images that mean something to you +- [x] Information about you in place of the given placeholder +- [x] A `My Projects` button that links to the projects page +- [x] A `Contact Me` button that links to the contact page +- [x] Links to any social media profiles (Instagram, linkedIn, Twitter) into the footer section of your home page ### Task 3: Stretch Goals diff --git a/index.html b/index.html index d01f779ff..6934ab93f 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,66 @@ - - - - Document - - - - - \ No newline at end of file + + + + + Document + + +
+
+
+
+

Andrew Muto

+

+
+ +
+
+
+
+

+ I was born in a place and I am currently working at a job. This is very obviously a placeholder. +

+
+
+
+
+
+
+ Project 1 +
+
+ Project 2 +
+
+ Project 3 +
+
+
+
+ Project 4 +
+
+ Project 5 +
+
+ Project 6 +
+
+
+
+ + + diff --git a/style/index.css b/style/index.css index 440e53514..f4186faf9 100644 --- a/style/index.css +++ b/style/index.css @@ -1 +1,74 @@ -/* Add CSS styling here */ \ No newline at end of file +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { +margin: 0; +padding: 0; +border: 0; +font-size: 100%; +font: inherit; +vertical-align: baseline; +} +* { + box-sizing:border-box; + padding:0; + margin:0; + max-width:100%; + border:1px solid grey; +} +.one{ + display:flex; + justify-content:space-between; +} +.name{ + display:flex; + justify-content:flex-start; + font-size:50px; + +} +.links{ + display: flex; + justify-content:flex-end; + font-size:30px; +} +.links a{ + padding:10px; +} +.opener{ + background-color: #00CED1; + padding: 5%; + text-align: center; + width: 100% + +} +.followup{ + +} +.picrow{ + display:flex; + flex-direction:row; + justify-content:space-around; + padding:20px; +} +.picbox{ + display:flex; + flex-direction:column; + text-align:center; + } + +.contacts{ + font-size:20px; + text-align:center; + } +.contacts a{ + padding:10px; +} \ No newline at end of file