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
Binary file added Wireframe/img/Gitbranch1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/img/Wireframe1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/img/readmeimg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 29 additions & 13 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,41 @@
</head>
<body>
<header>
<h1>Wireframe</h1>
<h1>Web Development & Planning</h1>
<p>Here are some useful steps & information to help you get started with web development.</p>
</header>
<main>
<section>
<img src="../Wireframe/img/Wireframe1.png" alt="wireframe" />
<h2>Wireframe</h2>
<p>
This is the default, provided code and no changes have been made yet.
What is the purpose of a wireframe? Think of "Wireframe" as the Architectural blueprint of a website or App.
A visual guide that outlines the structure, layout and placement of elements on a website.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
</section>
<section>
<img src="./img/readmeimg.png" alt="README File" />
<h2>README File</h2>
<p>
What is the purpose of a README file? It serves as the introductory guide and instruction manual for a project,
explaining what the software does, how to install and run it, and how others can contribute to it.
</p>
<a href="https://www.geeksforgeeks.org/git/what-is-readme-md-file/">Read more</a>
</section>
<section>
<img src="./img/Gitbranch1.jpg" alt="Git Branch" />
<h2>Branch in Git</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
What is a branch in Git? A branch in Git is a separate line of development that allows you to isolate your work,
experiment with new features, fix bugs or make changes without affecting the main codebase.
</p>
<a href="">Read more</a>
</article>
</main>
<a href="https://github.com/gitstandards/git-branching">Read more</a>
</section>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
Created By John Robinson. 2026
</p>
</footer>
</body>
Expand Down
48 changes: 37 additions & 11 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,38 +22,54 @@ As well as useful links to learn more */
--font: 100%/1.5 system-ui;
--space: clamp(6px, 6px + 2vw, 15px);
--line: 1px solid;
--container: 1280px;
--container: 900px;
}

/* ====== Base Elements ======
General rules for basic HTML elements in any context */
body {
background: var(--paper);
color: var(--ink);
font: var(--font);
margin: 0 auto;
text-align: center;
}

a {
padding: var(--space);
border: var(--line);
max-width: fit-content;
}

img,
svg {
width: 100%;
object-fit: cover;
}

/* ====== Site Layout ======
Setting the overall rules for page regions
https://www.w3.org/WAI/tutorials/page-structure/regions/
*/
main {
max-width: var(--container);
margin: 0 auto calc(var(--space) * 4) auto;
padding-bottom: 2rem;
width: 70%;
text-align: center;
}

footer {
position: fixed;
bottom: 0;
text-align: center;
margin: 0 auto;
padding: 0.5rem 0;
background-color: white;
width: 100%;
border-top: var(--line);
}

/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Inspect this in Devtools and click the "grid" button in the Elements view
Expand All @@ -65,25 +81,35 @@ main {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space);
> *:first-child {

>*:first-child {
grid-column: span 2;
}
}

header {
text-align: center;
}

article {
border: var(--line);
padding: var(--space);
text-align: left;
}

/* ====== Article Layout ======
Setting the rules for how elements are placed in the article.
Now laying out just the INSIDE of the repeated card/article design.
Keeping things orderly and separate is the key to good, simple CSS.
*/
article {
section {
border: var(--line);
padding-bottom: var(--space);

text-align: left;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
> * {
grid-column: 2/3;
}
> img {
grid-column: span 3;
}
}

img {
width: 100%;
grid-column: span 3;
}
Loading