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/1_mtsk3fQ_BRemFidhkel3dA.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/hq720.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
83 changes: 56 additions & 27 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Wireframe</h1>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wireframe</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header class="header">
<h1>Wireframe</h1>
<p>
This page explains the fundamental concepts of git branches,readme files and wireframe.
</p>
</header>
<main>
<article>
<img
src="/Wireframe/Featured_Image_Wireframes_Save_Time_Money.png"
alt="">
<h2>Wireframe</h2>
<p>
This is the default, provided code and no changes have been made yet.
Wireframe is the skeleton of a web page. It represents visual layout which helps developer and other team
members to make a decisions about the product.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
</p>
<a href="">Read more</a>
</article>
</main>
<footer>
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
</article>

<article>
<img src="/Wireframe/1_mtsk3fQ_BRemFidhkel3dA.webp" alt="">
<h2>Branch in Git </h2>
<p>
This is the default, provided code and no changes have been made yet.
Branch in git is a separate version of main branch used to develop ,edit and test changes before merging into
the main branch
</p>
</footer>
</body>
</html>
<a href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
</article>

<article>
<img
src="/Wireframe/hq720.jpg"
alt="">
<h2>Readme File </h2>
<p>
Readme file provides important information about the project such as its purpose ,setup instruction,feature and
usage.
</p>
<a href="https://www.geeksforgeeks.org/git/what-is-readme-md-file/">Read more</a>
</article>


</main>
<footer>
<p>
This is the default and practice wireframe.
</p>
</footer>
</body>

</html>
35 changes: 33 additions & 2 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,15 @@ body {
background: var(--paper);
color: var(--ink);
font: var(--font);
margin: 0px;
}
a {
padding: var(--space);
border: var(--line);
max-width: fit-content;
background-color: rgb(242, 238, 238);
color: black;
border-radius: 2px;
}
img,
svg {
Expand All @@ -45,15 +49,37 @@ svg {
Setting the overall rules for page regions
https://www.w3.org/WAI/tutorials/page-structure/regions/
*/


/* This is a header */
.header{
text-align: center;

width: 1240px;
margin-left: 109px;
margin-bottom: -16px;
padding: 20px;
}




main {
max-width: var(--container);
margin: 0 auto calc(var(--space) * 4) auto;
}
footer {

position: fixed;
bottom: 0;
bottom: 0px;
text-align: center;
margin-right: 20px;
border-top: 2px solid;
width: 1515px;
margin-top: 200px;
}


/* ====== 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 @@ -68,6 +94,7 @@ main {
> *:first-child {
grid-column: span 2;
}
margin-bottom: 80px;
}
/* ====== Article Layout ======
Setting the rules for how elements are placed in the article.
Expand All @@ -76,7 +103,7 @@ Keeping things orderly and separate is the key to good, simple CSS.
*/
article {
border: var(--line);
padding-bottom: var(--space);
padding-bottom: 20px;
text-align: left;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
Expand All @@ -87,3 +114,7 @@ article {
grid-column: span 3;
}
}

h2{
margin-bottom: 0px;
}
Loading