diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e53..58fef969 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -10,24 +10,92 @@

Wireframe

- This is the default, provided code and no changes have been made yet. + Wireframing is a practice most commonly used by UX designers. This process allows all stakeholders to agree on where the information will be placed before the developers build the interface out with code.t.

-

Title

+

Purpose of a wire frame

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A wireframe is a basic, simplified visual representation or blueprint of a website, app, or digital product. It shows the layout and structure of a page, without focusing on design elements like colors, fonts, or images. Think of it as a skeleton or map of the website. + + Wireframes are used in the early stages of design to:
+
+ Plan the structure: Show where things like text, buttons, navigation menus, and images will go.
+ Help user flow: Help designers and developers see how users will navigate the site or app.
+ Test ideas quickly: Experiment with different layouts and features before investing time in detailed design.
+
+ Wireframes can range from low-fidelity (simple sketches) to high-fidelity (detailed mockups), but they all focus on the layout and functionality rather than the visual design. +
+
+ In simple terms, wireframes are visual representations of a web page or app interface, stripped down to its bare bones. Think of it as the architectural blueprint of your design project. They outline the structure and functionality of your product without getting caught up in colors, visuals, or specific content.

- Read more + Read more
+
+
+
+ +

Branch in Git

+

In Git, a branch is a new/separate version of the main repository. A branch in Git is like a separate version of your project where you can work on changes without affecting the main codebase. It allows you to experiment, develop new features, or fix bugs independently, and later you can merge those changes back into the main project. +
+
+ You always create a branch from an existing branch. Typically, you might create a new branch from the default branch of your repository. You can then work on this new branch in isolation from changes that other people are making to the repository. A branch you create to build a feature is commonly referred to as a feature branch or topic branch. For more information, see Creating and deleting branches within your repository. +
+
+ You can also use a branch to publish a GitHub Pages site. For more information, see About GitHub Pages. +
+ You must have write access to a repository to create a branch, open a pull request, or delete and restore branches in a pull request. For more information, see Access permissions on GitHub. +
+
+ In summary, branches in Git allow developers to work on different tasks in isolation, organize development, and merge changes in an efficient and controlled way. They help manage multiple versions of a project simultaneously, making it easier to collaborate and experiment. +
+
+

+ + Read more + + +
+
+ +
+
+ +

Readme file

+

+ A README file in Git (usually named README.md) is a documentation file that provides essential information about a project. It’s typically the first thing a person sees when they visit a repository and serves as a guide to understand what the project is, how to use it, and how to contribute to it. +
+
+ You can add a README file to a repository to communicate important information about your project. A README, along with a repository license, citation file, contribution guidelines, and a code of conduct, communicates expectations for your project and helps you manage contributions. +
+
+ Why a README is Important: +
+
+ Clarifies Purpose:It explains what the project does, helping users quickly understand its purpose. +
+ Guides Users: It provides instructions on installation, usage, and configuration. +
+ Helps Contributions: It gives clear guidelines for people who want to contribute to the project. +
+ Improves Accessibility: It makes the project more approachable and easier to use for both developers and non-developers. +
+
+ In summary, a README file in Git is essential for documenting a project. It helps developers and other users understand the project’s purpose, how to use it, and how to contribute. It's a key part of every repository, especially for open-source projects. +

+ Read more +
+
+
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c..dd239574 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -87,3 +87,33 @@ article { grid-column: span 3; } } +.side-images{ + display: flex; + justify-content: space-evenly; + align-items: center; + gap: 5px; + margin-top: -40px; + +} +.side-images .bottom-side{ + max-width: 50%; + +} + + +.paraBold{ + font-weight: bold; +} +footer { + position: fixed; + bottom: 0; + width: 100%; + color: black; + padding: 10px; + text-align: center; + max-height: 50px; + margin-top: 20px; +} +footer p { + padding-top: 20px; +}