diff --git a/wireframeDinia1 b/wireframeDinia1 new file mode 100644 index 000000000..62afea52e --- /dev/null +++ b/wireframeDinia1 @@ -0,0 +1,61 @@ + + + + + + Wireframe Questions + + + + +
+

Asked Questions

+

Answers to Git .

+
+ +
+ + +
+
+

What is the purpose of a README file?

+

+ A README file introduces and explains a project. How to install or run it, the technologies used, and any + relevant instructions for contributors or users. It serves as the first point + of reference for understanding the repository. +

+ +
+
+ + +
+
+

What is the purpose of a wireframe?

+

+ A wireframe is a visual guide that outlines the structure of a webpage or + application interface. It focuses on layout, content placement, and user flow + without dealing with styling or design details. +

+ +
+ +
+

What is a branch in Git?

+

+ A branch in Git is a parallel version of a project code. It allows developers + to work on new features, fixes, or experiments without altering the main codebase. + Once the work is ready, the branch can be merged back into the main branch. +

+ +
+
+ +
+ + + + + \ No newline at end of file diff --git a/wireframeDinia1css.css b/wireframeDinia1css.css new file mode 100644 index 000000000..dc239b13a --- /dev/null +++ b/wireframeDinia1css.css @@ -0,0 +1,65 @@ + +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: Arial, sans-serif; +} + +body { + max-width: 900px; + margin: 0 auto; + padding: 20px; +} + + +header { + text-align: center; + margin-bottom: 40px; +} + +header h1 { + margin-bottom: 10px; +} + + +section { + margin-bottom: 40px; +} + + +article { + border: 2px solid #cccccc; + padding: 20px; + margin-bottom: 20px; +} + + +button { + margin-top: 20px; + padding: 10px 20px; + border: 2px solid #ccc; + background: #f5f5f5; + cursor: pointer; +} + + +main section:nth-of-type(2) { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 20px; +} + + +footer { + text-align: center; + padding: 20px; + border-top: 2px solid #ccc; +} + + +@media (max-width: 700px) { + main section:nth-of-type(2) { + grid-template-columns: 1fr; + } +} \ No newline at end of file