Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions wireframeDinia1
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wireframe Questions</title>
<link rel="stylesheet" href="wireframeDinia1css.css">
</head>

<body>
<header>
<h1>Asked Questions</h1>
<p>Answers to Git .</p>
</header>

<main>


<section>
<article>
<h2>What is the purpose of a README file?</h2>
<p>
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.
</p>
<button>Read More</button>
</article>
</section>


<section>
<article>
<h2>What is the purpose of a wireframe?</h2>
<p>
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.
</p>
<button>Read More</button>
</article>

<article>
<h2>What is a branch in Git?</h2>
<p>
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.
</p>
<button>Read More</button>
</article>
</section>

</main>

<footer>
<p>Footer usually contains contact links and more general site information.</p>
</footer>

</body>
</html>
65 changes: 65 additions & 0 deletions wireframeDinia1css.css
Original file line number Diff line number Diff line change
@@ -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;
}
}