diff --git a/Cakes-Co/design/cakes wireframe - desktop.png b/Cakes-Co/design/cakes wireframe - desktop.png deleted file mode 100644 index e9f99f3b..00000000 Binary files a/Cakes-Co/design/cakes wireframe - desktop.png and /dev/null differ diff --git a/Cakes-Co/design/cakes wireframe - mobile.png b/Cakes-Co/design/cakes wireframe - mobile.png deleted file mode 100644 index 12900589..00000000 Binary files a/Cakes-Co/design/cakes wireframe - mobile.png and /dev/null differ diff --git a/Cakes-Co/index.html b/Cakes-Co/index.html deleted file mode 100644 index 60b1afe1..00000000 --- a/Cakes-Co/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - Responsive Cake webpage - - - - - - - - \ No newline at end of file diff --git a/Cakes-Co/readme.md b/Cakes-Co/readme.md deleted file mode 100644 index a4ad84b8..00000000 --- a/Cakes-Co/readme.md +++ /dev/null @@ -1,70 +0,0 @@ -# Cakes Co - -The objective of this exercise is to create a responsive webpage showcasing your imaginary cake business. You are not required to found an actual cake business, but cakes brought to class this week will be welcomed with joy. - -## Learning Objectives - -- Translate wireframe designs to a fully featured web page. -- Implement a responsive design using the Mobile First approach -- Adapt the page layout for larger screens using media queries -- Select appropriate fonts and color schemes to create an aesthetically pleasing design -- Use hover/focus effects to add interactivity to buttons and images - -## Requirements - -This project develops your skills in creating responsive webpages using the Mobile First approach. You are expected to have a basic understanding of HTML and CSS. - -Start by implementing the mobile design in HTML and CSS. Then use media queries to adapt the layout for larger screens. Use `min-width` for your media queries and create three different variants of the layout using two different breakpoints. - -Choose appropriate fonts and colors and find visually appealing cake pictures to replace the placeholders in the wireframes. You are encouraged to add hover/focus effects to buttons and images to enhance interactivity. - -Make sure that all elements are visible and functional on both mobile and desktop devices. - -## Acceptance Criteria - -- [ ] The webpage is responsive and follows the Mobile First approach -- [ ] The layout adapts appropriately for larger screens using media queries -- [ ] Fonts and colors are selected appropriately and cake pictures are visually appealing -- [ ] The webpage includes hover effects to add interactivity -- [ ] All elements are visible and function as intended on both mobile and desktop devices according to the wireframes -- [ ] Your page scores 100 on Lighthouse Accessibility -- [ ] Your site is deployed to Netlify and the link is included in your PR message. - -## Tips for success - -When you're ready to start coding: - -### Start with mobile - -- Write the HTML following the mobile design -- Then write your CSS for everything to look great on mobile -- Remember to link your CSS file to your HTML file inside the `` in `index.html` -- You don't need to use any media queries yet, because we're following a [Mobile First](https://www.invisionapp.com/inside-design/mobile-first-design/) approach! - -### Then adapt the page for larger screens - -- Now add media queries to your CSS, and change the layout and sizing of elements so they make better use of a wider screen (see the desktop wireframe design below). -- To follow Mobile First principles, we will only be using `min-width` in our media queries (no max-width!) -- You should **use 2 different breakpoints**, meaning you should have **3** different variants of your layout. Here's an example. - - If we have the following **2 breakpoints**: - - > - breakpoint 1 --> 540px - > - breakpoint 2 --> 900px - - Then our CSS code will be split into **3**: - - > 1. **"default"**: default styles, should implement the mobile design (no media query used for these). These styles will apply to all screen sizes by default. - > 2. **"medium"**: Our first media query `@media (min-width: 540px) {...}` **will overwrite our default styles** for screens at least 540px wide. Screens _below_ 540px will apply the styles from the "default". - > 3. **"large"**: Our second media query `@media (min-width: 900px) {...}` **will overwrite our default AND medium styles** for screens at least 900px wide (no upper limit). - -### Define your own style - -- Choose 1-2 fonts to use (lots of [free fonts here](https://fonts.google.com/)) -- Choose 2-3 colours that you think go together well, and try to limit yourself to those in your CSS ([look here at palettes](https://coolors.co/palettes/trending) for inspiration) -- Select some nice cake pictures to replace the placeholders in the wireframes (good [photo source here](https://unsplash.com/images/food/cake)). -- Get creative! Can you add some cool hover/focus effects to buttons and [images](https://www.wix.com/website-template/view/html/1911?siteId=c1c72d26-c040-41f2-80ce-0b0f8aef01b4&metaSiteId=5d77fab8-f068-4228-8b61-4181af054ca6&originUrl=https%3A%2F%2Fwww.wix.com%2Fwebsite%2Ftemplates&tpClick=view_button)? - -### Also - -- It's up to you to find a solution for any elements that are visible in desktop and not on mobile - and vice versa. diff --git a/Cakes-Co/style.css b/Cakes-Co/style.css deleted file mode 100644 index 6de1b356..00000000 --- a/Cakes-Co/style.css +++ /dev/null @@ -1 +0,0 @@ -/* Add your styling here */ diff --git a/Form-Controls/README.md b/Form-Controls/README.md deleted file mode 100644 index 6d74a7a8..00000000 --- a/Form-Controls/README.md +++ /dev/null @@ -1,66 +0,0 @@ -# HTML/ CSS Week 3 - -## Forms, styling forms, and Devtools - -## Aims - -- Interpret requirements -- Write a valid form -- Style form controls -- Test with Devtools -- Refactor using Devtools - -## Task - -We are selling t-shirts. Write a form to collect the following data: - -Our customers already have accounts, so we know their addresses and charging details already. We don't need to collect that data. We want to confirm they are the right person, then get them to choose a colour and then pick a delivery date. - -Writing that out as a series of questions to ask yourself: - -1. What is the customer's name? I must collect this data, and validate it. But what is a valid name? I must decide something. -2. What is the customer's email? I must make sure the email is valid. Email addresses have a consistent pattern. -3. What colour should this t-shirt be? I must give 3 options. How will I make sure they don't pick other colours? -4. What size does the customer want? I must give the following 6 options: XS, S, M, L, XL, XXL -5. When do they want the t-shirt to be delivered? I must collect a date and make sure that date is in the next four weeks. How will I do this? How will I make sure there are no mistakes about the date? - -All fields are required. -Do not write a form action for this project. - -## Developers must test their work. - -Let's write out our testable criteria: - -- [ ] I have used HTML and CSS only. - -### HTML - -- [ ] My form is semantic html. -- [ ] All inputs have associated labels. -- [ ] My Lighthouse Accessibility score is 100. -- [ ] I require a valid name. I have defined a valid name as a text string of two characters or more. -- [ ] I require a valid email. -- [ ] I require one colour from a defined set of 3 colours. -- [ ] I require one size from a defined set of 6 sizes. -- [ ] I require one date from a constrained date range. - -### CSS - -- [ ] I show which element is focused. -- [ ] My Lighthouse Accessibility score is 100. - -## Extension Task - -If you have done all these things and you would like a really big challenge, run a further test and refactor your code. - -- In Chrome Devtools, open the Command Palette - https://developer.chrome.com/docs/devtools/command-menu/ -- Type 'coverage' and open the Coverage drawer - https://developer.chrome.com/docs/devtools/coverage/ -- Refactor your code until you have no unused CSS, or as close to that as you can get. Prettier will prevent you minifying your code so the last few bytes are out of your reach, sorry! -- This challenge isn't about writing less CSS, it's about writing less _pointless_ CSS, so don't remove code that is actually being used in your layout. -- Insider tip: you might have to select some elements so their focus states don't get miscounted as unused. You can force state in Devtools: - https://twitter.com/ChromeDevTools/status/986992837127319552 -- Take a screenshot of your coverage stats. - -Sanity check: this extension is tough! Try it in your own time and don't let it hold up your coursework submission. diff --git a/Form-Controls/index.html b/Form-Controls/index.html deleted file mode 100644 index 4344b144..00000000 --- a/Form-Controls/index.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - My form exercise - - - - - -
-

Product Pick

-
-
-
- - -
- -
- - - - \ No newline at end of file diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css deleted file mode 100644 index e69de29b..00000000 diff --git a/HOW_TO_REVIEW.md b/HOW_TO_REVIEW.md deleted file mode 100644 index 1afda184..00000000 --- a/HOW_TO_REVIEW.md +++ /dev/null @@ -1,66 +0,0 @@ - - -# Everyone reviews code at CYF - -Mentors and trainees all review code, and collaborate on improving code quality. We are all helping each other to talk, write, and think about code more clearly. - -We are not reviewing code as if we were to merge this PR into production; we are opening a technical conversation for the purpose of insight and development. - -## Key points: - -1. Ask questions instead of making statements: - - **YES:** "Is there another element you could use to group a set of fields in a form? Why might someone use a different element in a form?" - **NO:** "Use fieldset not divs" - -2. Encourage simplicity, clarity, and precision: - - **YES** "There are 15,0000 files in this changelist. Which files should be reviewed?" - **NO** "It doesn't matter; I can try to figure out what you meant." - -3. Respect everyone's work and time: - - **YES** "I think there's some more to do here. Thanks for sharing where you're up to." - **NO** "This is rubbish. Try harder." - -## Labels - -Reviewers, please add labels (provided) to the PR once you've reviewed. This helps to focus the trainee on the areas they should work on, and gives an overview for mentors on what the whole cohort needs to work on. - -## Solutions - -### Where to find solutions? - -You can find the solutions for the module on the `solutions` branch. - -### Solutions branch - -The solutions branch typically contains: - -#### Sample solutions - -Solutions are example answers not the only correct answers. - -#### Common responses guides. - -Everyone is invited to contribute commonly encountered problems, mistakes, misunderstandings, and mental-model errors to our common responses documents. - -Use these resources to inform your code review, get unstuck, and improve your understanding. - -## Guides - -Here's a detailed checklist of the sorts of things we should check code for: - -https://syllabus.codeyourfuture.io/guides/marking-guide - -Here's a detailed style guide to help us all write clear, high quality code: - -https://syllabus.codeyourfuture.io/guides/code-style-guide - -Here's some help with giving good feedback during code review: - -https://teachertraining.codeyourfuture.io/tasks/code-review diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index 4cf154a2..00000000 --- a/LICENSE.txt +++ /dev/null @@ -1,386 +0,0 @@ -Attribution 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution 4.0 International Public License ("Public License"). To the -extent this Public License may be interpreted as a contract, You are -granted the Licensed Rights in consideration of Your acceptance of -these terms and conditions, and the Licensor grants You such rights in -consideration of benefits the Licensor receives from making the -Licensed Material available under these terms and conditions. - -Section 1 -- Definitions. - -a. Adapted Material means material subject to Copyright and Similar -Rights that is derived from or based upon the Licensed Material -and in which the Licensed Material is translated, altered, -arranged, transformed, or otherwise modified in a manner requiring -permission under the Copyright and Similar Rights held by the -Licensor. For purposes of this Public License, where the Licensed -Material is a musical work, performance, or sound recording, -Adapted Material is always produced where the Licensed Material is -synched in timed relation with a moving image. - -b. Adapter's License means the license You apply to Your Copyright -and Similar Rights in Your contributions to Adapted Material in -accordance with the terms and conditions of this Public License. - -c. Copyright and Similar Rights means copyright and/or similar rights -closely related to copyright including, without limitation, -performance, broadcast, sound recording, and Sui Generis Database -Rights, without regard to how the rights are labeled or -categorized. For purposes of this Public License, the rights -specified in Section 2(b)(1)-(2) are not Copyright and Similar -Rights. - -d. Effective Technological Measures means those measures that, in the -absence of proper authority, may not be circumvented under laws -fulfilling obligations under Article 11 of the WIPO Copyright -Treaty adopted on December 20, 1996, and/or similar international -agreements. - -e. Exceptions and Limitations means fair use, fair dealing, and/or -any other exception or limitation to Copyright and Similar Rights -that applies to Your use of the Licensed Material. - -f. Licensed Material means the artistic or literary work, database, -or other material to which the Licensor applied this Public -License. - -g. Licensed Rights means the rights granted to You subject to the -terms and conditions of this Public License, which are limited to -all Copyright and Similar Rights that apply to Your use of the -Licensed Material and that the Licensor has authority to license. - -h. Licensor means the individual(s) or entity(ies) granting rights -under this Public License. - -i. Share means to provide material to the public by any means or -process that requires permission under the Licensed Rights, such -as reproduction, public display, public performance, distribution, -dissemination, communication, or importation, and to make material -available to the public including in ways that members of the -public may access the material from a place and at a time -individually chosen by them. - -j. Sui Generis Database Rights means rights other than copyright -resulting from Directive 96/9/EC of the European Parliament and of -the Council of 11 March 1996 on the legal protection of databases, -as amended and/or succeeded, as well as other essentially -equivalent rights anywhere in the world. - -k. You means the individual or entity exercising the Licensed Rights -under this Public License. Your has a corresponding meaning. - -Section 2 -- Scope. - -a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - -b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - -a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - 4. If You Share Adapted Material You produce, the Adapter's - License You apply must not prevent recipients of the Adapted - Material from complying with this Public License. - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - -a. for the avoidance of doubt, Section 2(a)(1) grants You the right -to extract, reuse, reproduce, and Share all or a substantial -portion of the contents of the database; - -b. if You include all or a substantial portion of the database -contents in a database in which You have Sui Generis Database -Rights, then the database in which You have Sui Generis Database -Rights (but not its individual contents) is Adapted Material; and - -c. You must comply with the conditions in Section 3(a) if You Share -all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - -a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE -EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS -AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF -ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, -IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, -WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, -ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT -KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT -ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - -b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE -TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, -NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, -INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, -COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR -USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN -ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR -DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR -IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - -c. The disclaimer of warranties and limitation of liability provided -above shall be interpreted in a manner that, to the extent -possible, most closely approximates an absolute disclaimer and -waiver of all liability. - -Section 6 -- Term and Termination. - -a. This Public License applies for the term of the Copyright and -Similar Rights licensed here. However, if You fail to comply with -this Public License, then Your rights under this Public License -terminate automatically. - -b. Where Your right to use the Licensed Material has terminated under -Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - -c. For the avoidance of doubt, the Licensor may also offer the -Licensed Material under separate terms or conditions or stop -distributing the Licensed Material at any time; however, doing so -will not terminate this Public License. - -d. Sections 1, 5, 6, 7, and 8 survive termination of this Public -License. - -Section 7 -- Other Terms and Conditions. - -a. The Licensor shall not be bound by any additional or different -terms or conditions communicated by You unless expressly agreed. - -b. Any arrangements, understandings, or agreements regarding the -Licensed Material not stated herein are separate from and -independent of the terms and conditions of this Public License. - -Section 8 -- Interpretation. - -a. For the avoidance of doubt, this Public License does not, and -shall not be interpreted to, reduce, limit, restrict, or impose -conditions on any use of the Licensed Material that could lawfully -be made without permission under this Public License. - -b. To the extent possible, if any provision of this Public License is -deemed unenforceable, it shall be automatically reformed to the -minimum extent necessary to make it enforceable. If the provision -cannot be reformed, it shall be severed from this Public License -without affecting the enforceability of the remaining terms and -conditions. - -c. No term or condition of this Public License will be waived and no -failure to comply consented to unless expressly agreed to by the -Licensor. - -d. Nothing in this Public License constitutes or may be interpreted -as a limitation upon, or waiver of, any privileges and immunities -that apply to the Licensor or You, including from the legal -processes of any jurisdiction or authority. - -======================================================================= - -Creative Commons is not a party to its public -licenses. Notwithstanding, Creative Commons may elect to apply one of -its public licenses to material it publishes and in those instances -will be considered the “Licensor.” The text of the Creative Commons -public licenses is dedicated to the public domain under the CC0 Public -Domain Dedication. Except for the limited purpose of indicating that -material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the -public licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/MultiPage-Clone/contact.html b/MultiPage-Clone/contact.html new file mode 100644 index 00000000..40bb3fac --- /dev/null +++ b/MultiPage-Clone/contact.html @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + Responsive grid project + + + + +
+
+

+ Let's talk +
+
+
+
+
+ + +
+
+ + +
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+
+
+ + + + diff --git a/MultiPage-Clone/css/contact.css b/MultiPage-Clone/css/contact.css new file mode 100644 index 00000000..2bca2012 --- /dev/null +++ b/MultiPage-Clone/css/contact.css @@ -0,0 +1,479 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +@font-face { + font-family: Quicksand; + src: url(/MultiPage-Clone/fonts/Quicksand/Quicksand-VariableFont_wght.ttf); + font-family: poppins; + src: url(MultiPage-Clone/fonts/poppins); +} + +/* Dont' forget to link this file to your HTML in the */ +:root { + --clr-Dark-beige: #e6dacd; + --clr-Light-beige: #f4ece6; + --clr-Royal-blue: #0150fd; + --clr-Black: #000; + --clr-White: #fff; + --clr-lite-black: rgba(0, 0, 0, 0.2); +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + height: 150px; + background: var(--clr-White); + position: fixed; + top: 0; + width: 100%; + z-index: 999; +} + +.logo { + display: flex; + justify-content: center; + align-items: center; + gap: 0.5rem; + margin-left: 2rem; +} + +.logo1 { + display: flex; + gap: 10px; + justify-content: center; + align-items: center; +} + +.logo1 img { + width: 1rem; + height: 1rem; +} + +.logo1 span:nth-child(3) { + margin-left: 5px; + font-size: 20px; +} + +.logo1 :nth-child(2) { + font-family: poppins; + font-size: 25px; + font-weight: bold; +} + +.logo :nth-child(4) { + font-size: 20px; +} + +.logo p { + font-family: Quicksand; + font-size: 16px; +} + +.nav-links { + list-style: none; + display: flex; + text-transform: uppercase; +} + +ul { + margin-right: 2rem; +} + +.nav-links li { + padding: 0 20px; +} + +.nav-links a { + color: var(--clr-Black); + text-decoration: none; + font-size: 15px; + font-family: Quicksand; +} + +.nav-links .active { + color: var(--clr-Royal-blue); +} + +.nav-links a:hover { + color: var(--clr-Royal-blue); +} + +.nav-links a:active { + color: var(--clr-Royal-blue); +} + +.navimage { + display: none; + cursor: pointer; +} + +.navimage :nth-child(1) { + background-color: var(--clr-Royal-blue); +} + +.navimage :nth-child(2) { + background-color: var(--clr-Royal-blue); +} + +.navimage :nth-child(3) { + background-color: var(--clr-Royal-blue); +} + +.navimage div { + width: 25px; + height: 3px; + background: var(--clr-Black); + margin: 5px; + transition: all 0.3s ease; +} + +/* ...... header section media queries.......*/ +@media screen and (max-width: 768px) { + nav { + position: relative; + height: 100px; + } + + .logo1 :nth-child(2) { + font-size: 20px; + } + + .logo :nth-child(4) { + font-size: 14px; + } + + .logo1 img { + width: 0.8rem; + height: 0.8rem; + } + + .nav-links { + display: none; + position: absolute; + background: var(--clr-Light-beige); + right: 0; + left: 0; + height: 100vh; + top: 0; + width: 100%; + flex-direction: column; + align-items: center; + justify-content: center; + } + + .logo { + display: flex; + flex-direction: column; + gap: 0; + } + + .logo1 span:nth-child(3) { + display: none; + } + + .nav-links li { + padding: 20px 0; + margin-top: 0.5rem; + } + + .nav-links a { + font-weight: bold; + font-family: poppins; + font-size: 20px; + } + + .navimage { + display: block; + padding: 1rem; + } + + .nav-active { + display: flex; + } + + .toggle .line1 { + transform: rotate(-45deg) translate(-5px, 6px); + background-color: var(--clr-Black); + } + + .toggle .line2 { + opacity: 0; + } + + .toggle .line3 { + transform: rotate(45deg) translate(-5px, -6px); + background-color: var(--clr-Black); + } +} +main { + margin-top: 10rem; + width: 100%; + height: auto; + background-color: var(--clr-Dark-beige); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.contact-text { + display: flex; + justify-content: center; + align-items: center; + gap: 7px; + padding: 3rem; +} + +.contact-text p { + width: 1.2rem; + height: 1.2rem; +} + +.contact-text span { + font-family: poppins; + font-size: 2rem; + font-weight: bold; +} + +.box { + width: 0.8rem; + height: 0.8rem; + background-color: var(--clr-Royal-blue); +} +.card { + width: 679px; + height: 644px; + background-color: var(--clr-White); + border-radius: 10px; + box-shadow: 0 4px 8px var(--clr-lite-black); + padding: 30px; + margin-bottom: 3rem; +} +.form-container { + margin-top: 2rem; + padding: 2rem; + display: flex; + flex-direction: column; + gap: 20px; +} +.name-container { + display: flex; + gap: 7.3rem; +} + +.input-group { + display: flex; + flex-direction: column; +} +label { + font-weight: bold; + font-size: 14px; + margin-bottom: 5px; +} + +input, +textarea { + border: none; + border-bottom: 2px solid var(--clr-Black); + padding: 10px 5px; + font-size: 16px; + outline: none; + background-color: transparent; +} + +input:focus, +textarea:focus { + border-bottom: 2px solid var(--clr-Royal-blue); +} +textarea { + resize: none; +} +button { + padding: 10px; + width: 120px; + font-weight: bold; + background-color: var(--clr-Royal-blue); + color: var(--clr-White); + border: none; + border-radius: 20px; + font-size: 16px; + cursor: pointer; +} + +button:hover { + background-color: var(--clr-White); + color: var(--clr-Black); + border: 2px solid var(--clr-Royal-blue); +} +.social-icons { + display: flex; + justify-content: center; + gap: 25px; +} + +.social-link { + color: var(--clr-Black); +} +footer { + width: 100%; + height: 100px; + background-color: var(--clr-White); + display: flex; + justify-content: space-between; + align-items: center; +} + +.fot-left { + display: flex; + flex-direction: column; + margin-left: 3rem; +} + +.fot-left span { + font-family: Quicksand; + font-size: 0.8rem; +} + +.fot-right span { + font-family: Quicksand; + font-size: 0.8rem; +} + +.fot-right { + display: flex; + gap: 4rem; + margin-right: 3rem; +} + +.fot-right p { + font-family: Quicksand; + font-weight: bold; + font-size: 0.8rem; +} + +.fot-right span { + font-family: Quicksand; +} + +.fot-right .social-icons .social-link { + font-size: 0.8rem; +} + +.one { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 0.8rem; +} + +/* ....... footer media Queries ........*/ +@media screen and (max-width: 768px) { + footer { + width: 100%; + flex-direction: column-reverse; + height: auto; + } + + .fot-left { + margin: 0; + padding: 10px; + text-align: center; + } + + .social-icons { + display: flex; + justify-content: center; + gap: 25px; + } + + .social-link { + color: var(--clr-Black); + font-size: 21px; + text-decoration: none; + } + + .fot-right { + display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: auto; + gap: 1rem; + align-items: center; + justify-items: center; + margin: 0; + padding: 10px; + } + + .fot-right :nth-child(1), + .fot-right :nth-child(2) { + grid-column: auto; + } + + .fot-right :nth-child(3) { + grid-column: 1 / span 2; + justify-self: center; + } + + .fot-right p { + margin: 0; + font-size: 0.9rem; + } + + main { + margin-top: 0px; + } + + .card { + width: 350px; + height: 600px; + } + .name-container { + flex-direction: column; + gap: 1rem; + } + .form-container { + padding: 0.5rem; + margin-top: 0rem; + } + label { + font-size: 12px; + margin-bottom: 5px; + } + button { + width: 270px; + } + + .contact-text { + flex-direction: column; + gap: 5px; + padding: 1rem; + } +} + +@media screen and (max-width: 400px) { + footer { + padding: 15px; + } + + .empty { + height: 20px; + visibility: hidden; + } + + .fot-right { + grid-template-columns: 1fr; + gap: 0.5rem; + } + + .fot-right :nth-child(3) { + grid-column: auto; + } + + .fot-right p { + font-size: 0.8rem; + } +} diff --git a/MultiPage-Clone/css/main.css b/MultiPage-Clone/css/main.css index aa561706..578d4846 100644 --- a/MultiPage-Clone/css/main.css +++ b/MultiPage-Clone/css/main.css @@ -1,3 +1,480 @@ /* Add your CSS here */ - +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} +@font-face { + font-family: Quicksand; + src: url(/MultiPage-Clone/fonts/Quicksand/Quicksand-VariableFont_wght.ttf); + font-family: poppins; + src: url(MultiPage-Clone/fonts/poppins); +} /* Dont' forget to link this file to your HTML in the */ +:root { + --clr-Dark-beige: #e6dacd; + --clr-Light-beige: #f4ece6; + --clr-Royal-blue: #0150fd; + --clr-Black: #000; + --clr-White: #fff; +} +nav { + display: flex; + justify-content: space-between; + align-items: center; + height: 150px; + background: var(--clr-White); + position: fixed; + top: 0; + width: 100%; + z-index: 999; +} +.logo { + display: flex; + justify-content: center; + align-items: center; + gap: 0.5rem; + margin-left: 2rem; +} +.logo1 { + display: flex; + gap: 10px; + justify-content: center; + align-items: center; +} +.logo1 img { + width: 1rem; + height: 1rem; +} +.logo1 span:nth-child(3) { + margin-left: 5px; + font-size: 20px; +} +.logo1 :nth-child(2) { + font-family: poppins; + font-size: 25px; + font-weight: bold; +} +.logo :nth-child(4) { + font-size: 20px; +} +.logo p { + font-family: Quicksand; + font-size: 16px; +} +.nav-links { + list-style: none; + display: flex; + text-transform: uppercase; +} +ul { + margin-right: 2rem; +} +.nav-links li { + padding: 0 20px; +} +.nav-links a { + color: var(--clr-Black); + text-decoration: none; + font-size: 15px; + font-family: Quicksand; +} +.nav-links .active { + color: var(--clr-Royal-blue); +} +.nav-links a:hover { + color: var(--clr-Royal-blue); +} +.nav-links a:active { + color: var(--clr-Royal-blue); +} +.navimage { + display: none; + cursor: pointer; +} +.navimage :nth-child(1) { + background-color: var(--clr-Royal-blue); +} +.navimage :nth-child(2) { + background-color: var(--clr-Royal-blue); +} +.navimage :nth-child(3) { + background-color: var(--clr-Royal-blue); +} + +.navimage div { + width: 25px; + height: 3px; + background: var(--clr-Black); + margin: 5px; + transition: all 0.3s ease; +} + +/* ...... header section media queries.......*/ + +@media screen and (max-width: 768px) { + nav { + position: relative; + } + .nav-links { + display: none; + position: absolute; + background: var(--clr-Light-beige); + right: 0; + left: 0; + height: 100vh; + top: 0; + width: 100%; + flex-direction: column; + align-items: center; + justify-content: center; + } + .logo { + display: flex; + flex-direction: column; + gap: 0; + } + .logo1 span:nth-child(3) { + display: none; + } + .nav-links li { + padding: 20px 0; + margin-top: 0.5rem; + } + .nav-links a { + font-weight: bold; + font-family: poppins; + font-size: 20px; + } + .navimage { + display: block; + padding: 1rem; + } + + .nav-active { + display: flex; + } + + .toggle .line1 { + transform: rotate(-45deg) translate(-5px, 6px); + background-color: var(--clr-Black); + } + + .toggle .line2 { + opacity: 0; + } + + .toggle .line3 { + transform: rotate(45deg) translate(-5px, -6px); + background-color: var(--clr-Black); + } +} + +/* ....... Main section ........*/ + +main { + margin: 0; + display: flex; + height: 100vh; + position: relative; +} + +.left-side { + background-color: var(--clr-Dark-beige); + flex: 1.4; +} + +.right-side { + background-color: var(--clr-White); + flex: 2; +} +.center-box { + position: absolute; + left: 25%; + top: 30%; + width: 900px; + height: 500px; + background-color: var(--clr-White); + box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2); + display: flex; +} + +.inner-left { + background-color: var(--clr-Light-beige); + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 1.5rem; +} +.inner-left .btn { + display: none; +} +.inner-left img { + width: 200px; + height: 200px; + border-radius: 50%; + object-fit: cover; + display: block; +} +.line { + width: 50px; + border-top: 2px solid var(--clr-Royal-blue); + margin: 20px 0; +} +.social-icons { + display: flex; + justify-content: center; + gap: 25px; +} +.social-link { + color: var(--clr-Black); + font-size: 21px; + text-decoration: none; +} +.fist-heading { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} +.fist-heading span { + font-family: poppins; + font-size: 1.5rem; + font-weight: bold; +} +.pp { + font-family: Quicksand; + font-size: 1rem; + letter-spacing: 5px; + margin-bottom: 10px; + margin-top: 0.5rem; +} + +.inner-right { + flex: 1.3; + display: flex; + flex-direction: column; + justify-content: left; + gap: 1rem; + padding: 1rem; +} +.inner-right h1 { + font-size: 7rem; + font-family: poppins; +} +.inner-right span { + font-size: 1.5rem; + font-family: poppins; +} + +.btn1 { + background-color: var(--clr-Royal-blue); + color: var(--clr-White); + border: none; + padding: 5px 30px 5px 30px; + font-size: 16px; + border-radius: 20px; + font-family: poppins; + cursor: pointer; + transition: background-color 0.3s ease; +} +.btn1:hover { + border: 1.5px solid var(--clr-Royal-blue); + background-color: var(--clr-White); + color: var(--clr-Black); +} +.btn2 { + background-color: var(--clr-White); + color: var(--clr-Black); + border: none; + padding: 4px 30px 4px 30px; + font-size: 16px; + border-radius: 20px; + font-family: poppins; + border: 1.5px solid var(--clr-Black); + cursor: pointer; + transition: background-color 0.3s ease; +} + +.btn2:hover { + border: 1.5px solid var(--clr-Royal-blue); + background-color: var(--clr-Royal-blue); + color: var(--clr-White); +} +.para { + display: flex; + flex-direction: column; + gap: 1.8rem; + width: 80%; + margin-top: 1.3rem; +} +.para p { + font-family: poppins; + letter-spacing: 1.2px; + font-size: 0.9rem; +} + +/* ........ main media query .......*/ +@media screen and (max-width: 768px) { + .inner-right .btn { + display: none; + } + .pp { + display: none; + } + .inner-left .btn { + display: flex; + flex-direction: row; + gap: 0.8rem; + } + .left-side { + display: none; + } + .right-side { + display: none; + } + .inner-left { + width: 100%; + height: auto; + padding: 1rem; + } + .center-box { + position: absolute; + width: 95%; + height: auto; + left: 5%; + top: 0; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + } + .inner-right { + width: 100%; + height: auto; + margin-top: 1rem; + background-color: var(--clr-Dark-beige); + text-align: center; + } + .para { + width: 100%; + flex-direction: column; + justify-content: center; + padding: 1rem; + } + .para p { + letter-spacing: 1px; + font-size: 0.9rem; + } + .inner-right h1 { + font-size: 2rem; + font-family: poppins; + } +} + +/* ..... footer css .....*/ +footer { + width: 100%; + height: 100px; + background-color: var(--clr-White); + display: flex; + justify-content: space-between; + align-items: center; +} +.fot-left { + display: flex; + flex-direction: column; + margin-left: 3rem; +} +.fot-left span { + font-family: Quicksand; + font-size: 0.8rem; +} +.fot-right span { + font-family: Quicksand; + font-size: 0.8rem; +} +.fot-right { + display: flex; + gap: 4rem; + margin-right: 3rem; +} +.fot-right p { + font-family: Quicksand; + font-weight: bold; + font-size: 0.8rem; +} +.fot-right span { + font-family: Quicksand; +} +.fot-right .social-icons .social-link { + font-size: 0.8rem; +} +.one{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 0.8rem; +} +/* ....... footer media Queries ........*/ +@media screen and (max-width: 768px) { + footer { + width: 100%; + flex-direction: column-reverse; + height: auto; + } + + .fot-left { + margin: 0; + padding: 10px; + text-align: center; + } + + .fot-right { + display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: auto; + gap: 1rem; + align-items: center; + justify-items: center; + margin: 0; + padding: 10px; + } + + .fot-right :nth-child(1), + .fot-right :nth-child(2) { + grid-column: auto; + } + + .fot-right :nth-child(3) { + grid-column: 1 / span 2; + justify-self: center; + } + + .fot-right p { + margin: 0; + font-size: 0.9rem; + } + +} + +@media screen and (max-width: 400px) { + footer { + margin-top: 250px; + padding: 15px; + } + .fot-right { + grid-template-columns: 1fr; + gap: 0.5rem; + } + .fot-right :nth-child(3) { + grid-column: auto; + } + + .fot-right p { + font-size: 0.8rem; + } +} diff --git a/MultiPage-Clone/css/project.css b/MultiPage-Clone/css/project.css new file mode 100644 index 00000000..b845779b --- /dev/null +++ b/MultiPage-Clone/css/project.css @@ -0,0 +1,598 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +@font-face { + font-family: Quicksand; + src: url(/MultiPage-Clone/fonts/Quicksand/Quicksand-VariableFont_wght.ttf); + font-family: poppins; + src: url(MultiPage-Clone/fonts/poppins); +} + +/* Dont' forget to link this file to your HTML in the */ +:root { + --clr-Dark-beige: #e6dacd; + --clr-Light-beige: #f4ece6; + --clr-Royal-blue: #0150fd; + --clr-Black: #000; + --clr-White: #fff; + --clr-lite-black: rgba(0, 0, 0, 0.2); +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + height: 150px; + background: var(--clr-White); + position: fixed; + top: 0; + width: 100%; + z-index: 999; +} + +.logo { + display: flex; + justify-content: center; + align-items: center; + gap: 0.5rem; + margin-left: 2rem; +} + +.logo1 { + display: flex; + gap: 10px; + justify-content: center; + align-items: center; +} + +.logo1 img { + width: 1rem; + height: 1rem; +} + +.logo1 span:nth-child(3) { + margin-left: 5px; + font-size: 20px; +} + +.logo1 :nth-child(2) { + font-family: poppins; + font-size: 25px; + font-weight: bold; +} + +.logo :nth-child(4) { + font-size: 20px; +} + +.logo p { + font-family: Quicksand; + font-size: 16px; +} + +.nav-links { + list-style: none; + display: flex; + text-transform: uppercase; +} + +ul { + margin-right: 2rem; +} + +.nav-links li { + padding: 0 20px; +} + +.nav-links a { + color: var(--clr-Black); + text-decoration: none; + font-size: 15px; + font-family: Quicksand; +} + +.nav-links .active { + color: var(--clr-Royal-blue); +} + +.nav-links a:hover { + color: var(--clr-Royal-blue); +} + +.nav-links a:active { + color: var(--clr-Royal-blue); +} + +.navimage { + display: none; + cursor: pointer; +} + +.navimage :nth-child(1) { + background-color: var(--clr-Royal-blue); +} + +.navimage :nth-child(2) { + background-color: var(--clr-Royal-blue); +} + +.navimage :nth-child(3) { + background-color: var(--clr-Royal-blue); +} + +.navimage div { + width: 25px; + height: 3px; + background: var(--clr-Black); + margin: 5px; + transition: all 0.3s ease; +} + +@media screen and (max-width: 768px) { + nav { + position: relative; + height: 100px; + } + + .logo1 :nth-child(2) { + font-size: 20px; + } + + .logo :nth-child(4) { + font-size: 14px; + } + + .logo1 img { + width: 0.8rem; + height: 0.8rem; + } + + .nav-links { + display: none; + position: absolute; + background: var(--clr-Light-beige); + right: 0; + left: 0; + height: 100vh; + top: 0; + width: 100%; + flex-direction: column; + align-items: center; + justify-content: center; + } + + .logo { + display: flex; + flex-direction: column; + gap: 0; + } + + .logo1 span:nth-child(3) { + display: none; + } + + .nav-links li { + padding: 20px 0; + margin-top: 0.5rem; + } + + .nav-links a { + font-weight: bold; + font-family: poppins; + font-size: 20px; + } + + .navimage { + display: block; + padding: 1rem; + } + + .nav-active { + display: flex; + } + + .toggle .line1 { + transform: rotate(-45deg) translate(-5px, 6px); + background-color: var(--clr-Black); + } + + .toggle .line2 { + opacity: 0; + } + + .toggle .line3 { + transform: rotate(45deg) translate(-5px, -6px); + background-color: var(--clr-Black); + } +} + + main { + width: 100vw; + height: auto; + background-color: var(--clr-Dark-beige); + } + nav { + height: 150px; + } + .empty { + height: 20px; + visibility: hidden; + } + + .project-text { + display: flex; + justify-content: center; + align-items: center; + gap: 7px; + padding: 1rem; + } + + .project-text p { + width: 1.2rem; + height: 1.2rem; + } + + .project-text span { + font-family: poppins; + font-size: 2rem; + font-weight: bold; + } + + .box { + width: 0.8rem; + height: 0.8rem; + background-color: var(--clr-Royal-blue); + } + + .top-paragraph { + margin-top: 0; + width: 60%; + font-size: 1.2rem; + height: 102px; + font-family: Quicksand; + margin-left: auto; + margin-right: auto; + letter-spacing: 2px; + } + .main-container { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin-top: 0.3rem; + gap: 1.8rem; + } + + .container{ + background-color: var(--clr-White); + border-radius: 3px; + box-shadow: 0 4px 8px var(--clr-lite-black); + display: grid; + grid-template-columns: 1fr 1fr; + width: 750px; + height: 404px; + } +.container p{ + padding: 0.6rem; + font-family: Quicksand; + font-size: 0.99rem; + letter-spacing: 0.5px; +} + .small-box { + width: 10px; + height: 50px; + background-color: var(--clr-Royal-blue); + margin: 0; + padding: 0; + } + + .box-one { + grid-column: 1 / 2; + grid-row: 1 / 2; + display: flex; + align-items: flex-start; + margin-top: 1.7rem; + } + + .container p{ + grid-column: 1 / 2; + grid-row: 2 / 3; + padding: 1rem; + font-size: 1.3rem; + margin-top: 0; + } + .text-content { + margin-left: 0.5rem; + } + .box-two { + grid-column: 2 / 3; + grid-row: 1 / 3; + align-self: center; + height: 100%; + display: flex; + justify-content: flex-end; + } + .box-two img { + width: 320px; + height: 404px; + text-align: end; + object-fit: cover; + } + .social-icons { + display: flex; + justify-content: center; + gap: 25px; + } + + .social-link { + color: var(--clr-Black); + font-size: 21px; + text-decoration: none; + } + + + @media screen and (min-width: 770px) { + main{ + margin-top: 10rem; + } + .main-container { + margin-top: 4rem; + } + } + +/* .................. Main for 768px..............*/ +@media screen and (max-width: 768px) { + nav { + height: 100px; + } + main { + width: 100vw; + height: auto; + background-color: var(--clr-Dark-beige); + } + .empty { + height: 20px; + visibility: hidden; + } + .project-text { + display: flex; + justify-content: center; + align-items: center; + gap: 7px; + padding: 1rem; + } + .project-text p { + width: 1.2rem; + height: 1.2rem; + } + .project-text span { + font-family: poppins; + font-size: 2rem; + font-weight: bold; + } + .box { + width: 0.8rem; + height: 0.8rem; + background-color: var(--clr-Royal-blue); + } + .top-paragraph { + margin-top: 0; + width: 100%; + height: 150px; + } + .top-paragraph p { + padding-left: 2rem; + padding-right: 2rem; + font-family: Quicksand; + font-size: 1rem; + letter-spacing: 2px; + } + .main-container { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin-top: 0.3rem; + gap: 1.8rem; + } + + .container { + background-color: var(--clr-White); + border-radius: 3px; + box-shadow: 0 4px 8px var(--clr-lite-black); + width: 300px; + height: 490px; + display: flex; + flex-direction: column; + gap: 1rem; + } + .box-one { + display: flex; + align-items: flex-start; + gap: 1rem; + margin-top: 1rem; + } + + .small-box { + width: 10px; + height: 50px; + background-color: var(--clr-Royal-blue); + margin: 0; + padding: 0; + } + + .text-content { + display: flex; + flex-direction: column; + justify-content: space-between; + } + .container p { + padding: 0.6rem; + font-family: Quicksand; + font-size: 0.99rem; + letter-spacing: 0.5px; + } + .text-content span { + font-family: poppins; + } + .text-content h2 { + color: var(--clr-Royal-blue); + font-family: poppins; + font-size: 1rem; + } + + .box-two { + width: 100%; + } + + .box-two img { + width: 100%; + height: 56%; + } + .one { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 0.8rem; + } +} + +footer { + width: 100%; + height: 100px; + background-color: var(--clr-White); + display: flex; + justify-content: space-between; + align-items: center; +} + +.fot-left { + display: flex; + flex-direction: column; + margin-left: 3rem; +} + +.fot-left span { + font-family: Quicksand; + font-size: 0.8rem; +} + +.fot-right span { + font-family: Quicksand; + font-size: 0.8rem; +} + +.fot-right { + display: flex; + gap: 4rem; + margin-right: 3rem; +} + +.fot-right p { + font-family: Quicksand; + font-weight: bold; + font-size: 0.8rem; +} + +.fot-right span { + font-family: Quicksand; +} + +.fot-right .social-icons .social-link { + font-size: 0.8rem; +} + +.one { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 0.8rem; +} +/* ....... footer media Queries ........*/ +@media screen and (max-width: 768px) { + footer { + width: 100%; + height: auto; + flex-direction: column-reverse; + } + + .fot-left { + margin: 0; + padding: 10px; + text-align: center; + } + + .social-icons { + display: flex; + justify-content: center; + gap: 25px; + } + + .social-link { + color: var(--clr-Black); + font-size: 21px; + text-decoration: none; + } + + .fot-right { + display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: auto; + gap: 1rem; + align-items: center; + justify-items: center; + margin: 0; + padding: 10px; + } + + .fot-right :nth-child(1), + .fot-right :nth-child(2) { + grid-column: auto; + } + + .fot-right :nth-child(3) { + grid-column: 1 / span 2; + justify-self: center; + } + + .fot-right p { + margin: 0; + font-size: 0.9rem; + } +} + +@media screen and (max-width: 400px) { + footer { + padding: 15px; + width: 100%; + display: flex; + flex-direction: column-reverse; + height: auto; + } + + .empty { + height: 20px; + visibility: hidden; + } + + .fot-right { + grid-template-columns: 1fr; + gap: 0.5rem; + } + + .fot-right :nth-child(3) { + grid-column: auto; + } + + .fot-right p { + font-size: 0.8rem; + } + .top-paragraph { + height: 220px; + } +} diff --git a/MultiPage-Clone/css/resume.css b/MultiPage-Clone/css/resume.css new file mode 100644 index 00000000..11150469 --- /dev/null +++ b/MultiPage-Clone/css/resume.css @@ -0,0 +1,659 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +@font-face { + font-family: Quicksand; + src: url(/MultiPage-Clone/fonts/Quicksand/Quicksand-VariableFont_wght.ttf); + font-family: poppins; + src: url(MultiPage-Clone/fonts/poppins); +} + +/* Dont' forget to link this file to your HTML in the */ +:root { + --clr-Dark-beige: #e6dacd; + --clr-Light-beige: #f4ece6; + --clr-Royal-blue: #0150fd; + --clr-Black: #000; + --clr-White: #fff; + --clr-lite-black: rgba(0, 0, 0, 0.2); +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + height: 150px; + background: var(--clr-White); + position: fixed; + top: 0; + width: 100%; + z-index: 999; +} + +.logo { + display: flex; + justify-content: center; + align-items: center; + gap: 0.5rem; + margin-left: 2rem; +} + +.logo1 { + display: flex; + gap: 10px; + justify-content: center; + align-items: center; +} + +.logo1 img { + width: 1rem; + height: 1rem; +} + +.logo1 span:nth-child(3) { + margin-left: 5px; + font-size: 20px; +} + +.logo1 :nth-child(2) { + font-family: poppins; + font-size: 25px; + font-weight: bold; +} + +.logo :nth-child(4) { + font-size: 20px; +} + +.logo p { + font-family: Quicksand; + font-size: 16px; +} + +.nav-links { + list-style: none; + display: flex; + text-transform: uppercase; +} + +ul { + margin-right: 2rem; +} + +.nav-links li { + padding: 0 20px; +} + +.nav-links a { + color: var(--clr-Black); + text-decoration: none; + font-size: 15px; + font-family: Quicksand; +} + +.nav-links .active { + color: var(--clr-Royal-blue); +} + +.nav-links a:hover { + color: var(--clr-Royal-blue); +} + +.nav-links a:active { + color: var(--clr-Royal-blue); +} + +.navimage { + display: none; + cursor: pointer; +} + +.navimage :nth-child(1) { + background-color: var(--clr-Royal-blue); +} + +.navimage :nth-child(2) { + background-color: var(--clr-Royal-blue); +} + +.navimage :nth-child(3) { + background-color: var(--clr-Royal-blue); +} + +.navimage div { + width: 25px; + height: 3px; + background: var(--clr-Black); + margin: 5px; + transition: all 0.3s ease; +} + +/* ...... header section media queries.......*/ + +@media screen and (max-width: 768px) { + nav { + position: relative; + height: 100px; + } + .logo1 :nth-child(2) { + font-size: 20px; + } + .logo :nth-child(4) { + font-size: 14px; + } + .logo1 img { + width: 0.8rem; + height: 0.8rem; + } + .nav-links { + display: none; + position: absolute; + background: var(--clr-Light-beige); + right: 0; + left: 0; + height: 100vh; + top: 0; + width: 100%; + flex-direction: column; + align-items: center; + justify-content: center; + } + + .logo { + display: flex; + flex-direction: column; + gap: 0; + } + + .logo1 span:nth-child(3) { + display: none; + } + + .nav-links li { + padding: 20px 0; + margin-top: 0.5rem; + } + + .nav-links a { + font-weight: bold; + font-family: poppins; + font-size: 20px; + } + + .navimage { + display: block; + padding: 1rem; + } + + .nav-active { + display: flex; + } + + .toggle .line1 { + transform: rotate(-45deg) translate(-5px, 6px); + background-color: var(--clr-Black); + } + + .toggle .line2 { + opacity: 0; + } + + .toggle .line3 { + transform: rotate(45deg) translate(-5px, -6px); + background-color: var(--clr-Black); + } +} + +/* .............. Main css ...........*/ +@media screen and (max-width: 768px) { + main { + width: 100vw; + height: auto; + background-color: var(--clr-Dark-beige); + } + .top-bun-txt { + display: flex; + justify-content: space-around; + align-items: center; + } + .top-bun-txt span { + font-family: poppins; + font-size: 1.2rem; + font-weight: bold; + } + .top-bun-txt button { + background-color: var(--clr-Royal-blue); + color: var(--clr-White); + border: none; + padding: 5px 15px 5px 15px; + font-size: 1rem; + border-radius: 20px; + font-family: poppins; + cursor: pointer; + transition: background-color 0.3s ease; + } + .resume-text { + display: flex; + justify-content: center; + align-items: center; + gap: 4px; + padding: 1rem; + } + .resume-text img { + width: 1.2rem; + height: 1.2rem; + } + .resume-text :nth-child(2) { + font-family: poppins; + font-size: 1.8rem; + font-weight: bold; + } + .main-container { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin-top: 1rem; + gap: 1.8rem; + } + .container { + background-color: var(--clr-White); + padding: 20px; + border-radius: 10px; + box-shadow: 0 4px 8px var(--clr-lite-black); + max-width: 340px; + height: 390px; + display: flex; + flex-direction: column; + justify-content: left; + align-items: flex-start; + gap: 1rem; + } + .left-con { + display: flex; + flex-direction: column; + gap: 1rem; + } + .box-one, + .box-two { + display: flex; + flex-direction: column; + } + .box-three { + display: flex; + flex-direction: column; + gap: 1rem; + } + .box-one :nth-child(1) { + color: var(--clr-Royal-blue); + font-family: poppins; + font-size: 1.1rem; + font-weight: bold; + } + .box-one :nth-child(2) { + font-family: poppins; + font-size: 1rem; + letter-spacing: 2px; + } + .box-two span { + font-family: Quicksand; + font-size: 1rem; + } + .box-three p { + font-family: poppins; + font-size: 0.9rem; + letter-spacing: 1px; + } + #edu-txt { + font-family: poppins; + font-size: 1.3rem; + font-weight: bold; + align-self: flex-start; + margin-left: 1.5rem; + } + .skill-text { + display: flex; + justify-content: center; + align-items: center; + gap: 0.5rem; + padding-left: 1.5rem; + padding-right: 1.5rem; + } + .box { + width: 1rem; + height: 1rem; + background-color: var(--clr-Royal-blue); + } + .skill-text span { + font-family: poppins; + font-size: 1rem; + letter-spacing: 1px; + } + .ff { + height: 50px; + } +} +/* ................ footer css ........*/ +footer { + width: 100%; + height: 100px; + background-color: var(--clr-White); + display: flex; + justify-content: space-between; + align-items: center; +} + +.fot-left { + display: flex; + flex-direction: column; + margin-left: 3rem; +} + +.fot-left span { + font-family: Quicksand; + font-size: 0.8rem; +} + +.fot-right span { + font-family: Quicksand; + font-size: 0.8rem; +} + +.fot-right { + display: flex; + gap: 4rem; + margin-right: 3rem; +} + +.fot-right p { + font-family: Quicksand; + font-weight: bold; + font-size: 0.8rem; +} + +.fot-right span { + font-family: Quicksand; +} + +.fot-right .social-icons .social-link { + font-size: 0.8rem; +} + +.one{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 0.8rem; +} + +/* ....... footer media Queries ........*/ +@media screen and (max-width: 768px) { + footer { + width: 100%; + flex-direction: column-reverse; + height: auto; + } + + .fot-left { + margin: 0; + padding: 10px; + text-align: center; + } + .social-icons { + display: flex; + justify-content: center; + gap: 25px; + } + + .social-link { + color: var(--clr-Black); + font-size: 21px; + text-decoration: none; + } + .fot-right { + display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: auto; + gap: 1rem; + align-items: center; + justify-items: center; + margin: 0; + padding: 10px; + } + + .fot-right :nth-child(1), + .fot-right :nth-child(2){ + grid-column: auto; + } + + .fot-right :nth-child(3){ + grid-column: 1 / span 2; + justify-self: center; + } + + .fot-right p { + margin: 0; + font-size: 0.9rem; + } +} +@media screen and (max-width: 400px) { + .top-paragraph { + height: 200px; + } + .main-container { + gap: 1rem; + } + + .project-text span { + font-size: 1.5rem; + } +} + +@media screen and (max-width: 400px) { + footer { + padding: 15px; + } + .empty { + height: 20px; + visibility: hidden; + } + + .fot-right { + grid-template-columns: 1fr; + gap: 0.5rem; + } + + .fot-right :nth-child(3) { + grid-column: auto; + } + + .fot-right p { + font-size: 0.8rem; + } +} + +@media screen and (min-width: 1200px) { + .social-icons { + display: flex; + justify-content: center; + gap: 25px; + } + + .social-link { + color: var(--clr-Black); + font-size: 21px; + text-decoration: none; + } + + main { + width: 100vw; + height: auto; + background-color: var(--clr-Dark-beige); + } + + .top-bun-txt { + margin-top: 5rem; + display: flex; + justify-content: center; + gap: 26rem; + } + + .top-bun-txt span { + font-family: poppins; + font-size: 1.5rem; + font-weight: bold; + } + + .top-bun-txt button { + background-color: var(--clr-Royal-blue); + color: var(--clr-White); + border: none; + padding: 10px 20px; + font-size: 1.2rem; + border-radius: 25px; + font-family: poppins; + cursor: pointer; + transition: background-color 0.3s ease; + } + + .resume-text { + display: flex; + justify-content: center; + align-items: center; + gap: 6px; + padding: 1.5rem; + margin-top: 10rem; + } + + .resume-text img { + width: 1.3rem; + height: 1.3rem; + } + + .resume-text :nth-child(2) { + font-family: poppins; + font-size: 2rem; + font-weight: bold; + } + + .main-container { + display: flex; + flex-direction: row; + flex-direction: column; + justify-content: space-between; + align-items: flex-start; + justify-content: center; + align-items: center; + margin-top: 2rem; + gap: 2rem; + } + + .container { + background-color: var(--clr-White); + padding: 30px; + border-radius: 10px; + box-shadow: 0 4px 8px var(--clr-lite-black); + max-width: 800px; + height: 350px; + display: grid; + grid-template-columns: 1fr 1fr 1fr; + grid-template-rows: auto; + grid-template-areas: + "box-one box-three box-three" + "box-two box-three box-three"; + column-gap: 1.5rem; + row-gap: 0; + } + + .left-con { + display: flex; + flex-direction: column; + gap: 1rem; + } + + .box-one { + grid-area: box-one; + } + + .box-two { + grid-area: box-two; + } + + .box-three { + grid-area: box-three; + } + .box-one, + .box-two { + display: flex; + flex-direction: column; + margin: 0; + } + .box-one { + margin-top: 2rem; + } + .box-three { + margin-top: 4rem; + box-sizing: border-box; + } + + .box-one :nth-child(1) { + color: var(--clr-Royal-blue); + font-family: poppins; + font-size: 1.2rem; + font-weight: bold; + } + + .box-one :nth-child(2) { + font-family: poppins; + font-size: 1rem; + letter-spacing: 2px; + } + + .box-two span { + font-family: Quicksand; + font-size: 1rem; + } + + .box-three p { + font-family: poppins; + font-size: 1rem; + letter-spacing: 1.5px; + } + +#edu-txt { + width: 760px; + font-family: Poppins, sans-serif; + font-size: 1.5rem; + font-weight: bold; + grid-column: span 3; + margin-bottom: 1rem; +} + +.skill-text { + display: flex; + justify-content: flex-start; + align-items: center; + gap: 0.5rem; + padding: 0.9rem; +} + +.box { + width: 1rem; + height: 1rem; + background-color: var(--clr-Royal-blue); +} + +.skill-text span { + font-family: Poppins, sans-serif; + font-size: 0.8rem; + letter-spacing: 1px; +} + + .ff { + height: 60px; + } +} diff --git a/MultiPage-Clone/fonts/Quicksand/OFL.txt b/MultiPage-Clone/fonts/Quicksand/OFL.txt new file mode 100644 index 00000000..128334cb --- /dev/null +++ b/MultiPage-Clone/fonts/Quicksand/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2011 The Quicksand Project Authors (https://github.com/andrew-paglinawan/QuicksandFamily), with Reserved Font Name “Quicksand”. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/OFL.txt b/MultiPage-Clone/fonts/Quicksand/Poppins/OFL.txt new file mode 100644 index 00000000..3e92931f --- /dev/null +++ b/MultiPage-Clone/fonts/Quicksand/Poppins/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Black.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Black.ttf new file mode 100644 index 00000000..71c0f995 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Black.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-BlackItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-BlackItalic.ttf new file mode 100644 index 00000000..7aeb58bd Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-BlackItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Bold.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Bold.ttf new file mode 100644 index 00000000..00559eeb Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Bold.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-BoldItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-BoldItalic.ttf new file mode 100644 index 00000000..e61e8e88 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-BoldItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraBold.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraBold.ttf new file mode 100644 index 00000000..df709360 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraBold.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraBoldItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraBoldItalic.ttf new file mode 100644 index 00000000..14d2b375 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraBoldItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraLight.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraLight.ttf new file mode 100644 index 00000000..e76ec69a Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraLight.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraLightItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraLightItalic.ttf new file mode 100644 index 00000000..89513d94 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ExtraLightItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Italic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Italic.ttf new file mode 100644 index 00000000..12b7b3c4 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Italic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Light.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Light.ttf new file mode 100644 index 00000000..bc36bcc2 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Light.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-LightItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-LightItalic.ttf new file mode 100644 index 00000000..9e70be6a Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-LightItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Medium.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Medium.ttf new file mode 100644 index 00000000..6bcdcc27 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Medium.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-MediumItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-MediumItalic.ttf new file mode 100644 index 00000000..be67410f Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-MediumItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Regular.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Regular.ttf new file mode 100644 index 00000000..9f0c71b7 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Regular.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-SemiBold.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-SemiBold.ttf new file mode 100644 index 00000000..74c726e3 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-SemiBold.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-SemiBoldItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-SemiBoldItalic.ttf new file mode 100644 index 00000000..3e6c9422 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-SemiBoldItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Thin.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Thin.ttf new file mode 100644 index 00000000..03e73661 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-Thin.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ThinItalic.ttf b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ThinItalic.ttf new file mode 100644 index 00000000..e26db5dd Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Poppins/Poppins-ThinItalic.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/Quicksand-VariableFont_wght.ttf b/MultiPage-Clone/fonts/Quicksand/Quicksand-VariableFont_wght.ttf new file mode 100644 index 00000000..bd332b67 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/Quicksand-VariableFont_wght.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/README.txt b/MultiPage-Clone/fonts/Quicksand/README.txt new file mode 100644 index 00000000..33d9d264 --- /dev/null +++ b/MultiPage-Clone/fonts/Quicksand/README.txt @@ -0,0 +1,67 @@ +Quicksand Variable Font +======================= + +This download contains Quicksand as both a variable font and static fonts. + +Quicksand is a variable font with this axis: + wght + +This means all the styles are contained in a single file: + Quicksand-VariableFont_wght.ttf + +If your app fully supports variable fonts, you can now pick intermediate styles +that aren’t available as static fonts. Not all apps support variable fonts, and +in those cases you can use the static font files for Quicksand: + static/Quicksand-Light.ttf + static/Quicksand-Regular.ttf + static/Quicksand-Medium.ttf + static/Quicksand-SemiBold.ttf + static/Quicksand-Bold.ttf + +Get started +----------- + +1. Install the font files you want to use + +2. Use your app's font picker to view the font family and all the +available styles + +Learn more about variable fonts +------------------------------- + + https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts + https://variablefonts.typenetwork.com + https://medium.com/variable-fonts + +In desktop apps + + https://theblog.adobe.com/can-variable-fonts-illustrator-cc + https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts + +Online + + https://developers.google.com/fonts/docs/getting_started + https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide + https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts + +Installing fonts + + MacOS: https://support.apple.com/en-us/HT201749 + Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux + Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows + +Android Apps + + https://developers.google.com/fonts/docs/android + https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts + +License +------- +Please read the full license text (OFL.txt) to understand the permissions, +restrictions and requirements for usage, redistribution, and modification. + +You can use them in your products & projects – print or digital, +commercial or otherwise. + +This isn't legal advice, please consider consulting a lawyer and see the full +license for all details. diff --git a/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Bold.ttf b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Bold.ttf new file mode 100644 index 00000000..07d5127c Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Bold.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Light.ttf b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Light.ttf new file mode 100644 index 00000000..80053108 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Light.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Medium.ttf b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Medium.ttf new file mode 100644 index 00000000..f4634cd7 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Medium.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Regular.ttf b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Regular.ttf new file mode 100644 index 00000000..60323ed6 Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-Regular.ttf differ diff --git a/MultiPage-Clone/fonts/Quicksand/static/Quicksand-SemiBold.ttf b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-SemiBold.ttf new file mode 100644 index 00000000..52059c3a Binary files /dev/null and b/MultiPage-Clone/fonts/Quicksand/static/Quicksand-SemiBold.ttf differ diff --git a/MultiPage-Clone/index.html b/MultiPage-Clone/index.html index cd704c69..014c4304 100644 --- a/MultiPage-Clone/index.html +++ b/MultiPage-Clone/index.html @@ -4,18 +4,107 @@ + + - + + + + + + Responsive grid project - + - +
+
+
+
+
+ profile +
+ Maya + Nelson +
+

+
+ + +
+

PROJECT MANAGER

+ +
+
+
+

Hello

+ Here's who I am & what I do +
+
+ + +
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to + add your own content and make changes to the font.

+

I’m a great place for you to tell a story and let your users know a little more about you.

+
+
+
+
+ - - -

This website design was created by Wix.com, and is used here for strictly educational purposes.

+ - \ No newline at end of file diff --git a/MultiPage-Clone/main.js b/MultiPage-Clone/main.js index 11e6b744..3c244efd 100644 --- a/MultiPage-Clone/main.js +++ b/MultiPage-Clone/main.js @@ -1,4 +1,23 @@ +const burger = document.querySelector(".navimage"); +const nav = document.querySelector(".nav-links"); +const body = document.querySelector("body"); +const navLinks = document.querySelectorAll('.nav-links a'); -const OVERFLOW = $('#toggle1'); +burger.addEventListener("click", () => { + nav.classList.toggle("nav-active"); + burger.classList.toggle("toggle"); -OVERFLOW.click(e => e.target.checked ? $("body").css("overflow-y", "hidden") : $("body").css("overflow-y", "auto")); \ No newline at end of file + if (nav.classList.contains("nav-active")) { + body.style.overflow = "hidden"; + } else { + body.style.overflow = "auto"; + } +}); + +function openPage(buttonId){ + if(buttonId === 'btn-resume'){ + window.location.href = "resume.html"; + }else if(buttonId === 'btn-project'){ + window.location.href ='project.html' + } +} diff --git a/MultiPage-Clone/project.html b/MultiPage-Clone/project.html new file mode 100644 index 00000000..06a84c54 --- /dev/null +++ b/MultiPage-Clone/project.html @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + Responsive grid project + + + +
+
+

+ Projects +
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to + add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a + little more about you.

+
+ +
+
+
+
+
+

Project name 01

+ Project title +
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double + click me to add your own content and make changes to the font. I’m a great place for you to tell a story and + let your users know a little more about you.

+
+ first-img +
+
+ +
+
+
+
+

Project name 02

+ Project title +
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double + click me to add your own content and make changes to the font. I’m a great place for you to tell a story and + let your users know a little more about you.

+
+ second-img +
+
+
+
+
+
+

Project name 03

+ Project title +
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double + click me to add your own content and make changes to the font. I’m a great place for you to tell a story and + let your users know a little more about you.

+
+ third-img +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/MultiPage-Clone/resume.html b/MultiPage-Clone/resume.html new file mode 100644 index 00000000..60366e10 --- /dev/null +++ b/MultiPage-Clone/resume.html @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + Responsive grid project + + + + + +
+
+ + Resume +
+
+ Experience + +
+
+
+
+
+ 2035 - Present + JOB POSITION +
+
+ Company Name + Company Location +
+
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to + add your own content and make changes to the font.

+

I’m a great place for you to tell a story and let your users know a little more about you.

+
+
+
+
+
+ 2035 - 2035 + JOB POSITION +
+
+ Company Name + Company Location +
+
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double + click me to + add your own content and make changes to the font.

+

I’m a great place for you to tell a story and let your users know a little more about you.

+
+
+
+ Education +
+
+
+
+ 2035 - 2035 + UNIVERSITY NAME +
+
+ Degree Level + University Location +
+
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double + click me to + add your own content and make changes to the font.

+

I’m a great place for you to tell a story and let your users know a little more about you.

+
+
+
+
+
+ 2035 - 2035 + UNIVERSITY NAME +
+
+ Degree Level + University Location +
+
+
+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double + click me to + add your own content and make changes to the font.

+

I’m a great place for you to tell a story and let your users know a little more about you.

+
+
+
+ Professional SkillSet +
+

+ Entrepreneurial Mindset +
+
+

+ Go-to-Market Planning +
+
+

+ Teamwork Collaboration +
+
+

+ Digital Analytics +
+ Languages +
+

+ English (native) +
+
+

+ Spanish (proficient) +
+
+

+ French (proficient) +
+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/Wireframe/README.md b/Wireframe/README.md deleted file mode 100644 index 83b77c7e..00000000 --- a/Wireframe/README.md +++ /dev/null @@ -1,42 +0,0 @@ -# Wireframe - -![Wireframe](./wireframe.png) - -Using the provided wireframe, create a new webpage explaining: - -1. What is Git? -2. Why do developers need Git? -3. What is a branch in Git? - -The page should NOT use any framework like Bootstrap. - -## Learning Objectives - -- Apply a consistent color scheme to links and text on the webpage -- Use semantic HTML tags to structure the webpage -- Create a page header with a title and description -- Create an articles section with three articles, each including a title, summary, and a link -- Create a page footer and fix it to the bottom of the viewport -- Use the :first-child pseudo-class to style the first article so that it stands out from the others -- Use version control by committing often and pushing regularly to GitHub -- Don't use any frameworks; write your own layout using HTML and CSS - -Use the wireframe sketch provided to lay out the page. Please note that this is just a sketch - you can choose the colors, fonts, and images that you want to use on the page. - -## Acceptance Criteria - -- [ ] The webpage has a consistent color scheme for links and text. -- [ ] Semantic HTML tags are used to structure the webpage. -- [ ] The page header includes a title and description. -- [ ] The articles section has three articles, each including a title, summary, and a link. -- [ ] The page footer is fixed to the bottom of the viewport. -- [ ] The first article is styled using the :first-child pseudo-class. -- [ ] The webpage is styled using a linked .css file. -- [ ] The webpage is properly committed and pushed to a branch on GitHub. -- [ ] The webpage does not use any frameworks such as Bootstrap. - -## Resources - -- [Wireframe](https://www.productplan.com/glossary/wireframe/) -- [Semantic HTML](https://www.w3schools.com/html/html5_semantic_elements.asp) -- [:first-child](https://developer.mozilla.org/en-US/docs/Web/CSS/:first-child) diff --git a/Wireframe/css/style.css b/Wireframe/css/style.css deleted file mode 100644 index e69de29b..00000000 diff --git a/Wireframe/index.html b/Wireframe/index.html deleted file mode 100644 index 67544158..00000000 --- a/Wireframe/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - Wireframe - - - - - - - - -# How To Submit Your Coursework - -Use Git & Github to submit your coursework as a pull request. - -The Github Desktop cheatsheet will help you. - -[Github Desktop Cheatsheet](http://syllabus.codeyourfuture.io/git/cheatsheet) - -This module will help you submit your coursework. - -[Git](http://syllabus.codeyourfuture.io/git/index) - -## Questions & Help - -Contributing to a remote codebase is a necessary skill for a professional developer. Opening PRs is mandatory at CYF. It is part of the coursework. - -If you cannot submit your coursework you **must** post on Slack to get unblocked. - -[How to get help](./HOW-TO-GET-HELP.md) diff --git a/readme.md b/readme.md deleted file mode 100644 index 2b2d6c2c..00000000 --- a/readme.md +++ /dev/null @@ -1,7 +0,0 @@ -# Welcome to HTML-CSS - -All the coursework is listed as issues on this repo. You will copy these issues to your Coursework Planner, which is one repo that will hold all your coursework and assignments for the entire course. - -If you do not already have your own Coursework Planner, set one up now: - -https://github.com/CodeYourFuture/Coursework-Planner