Skip to content
Draft
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
17 changes: 17 additions & 0 deletions Wireframe/branch.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe cyf first sprint building a web page using Wireframe provided</title>
<link rel="stylesheet" href="martinStyle.css" />
</head>
<body>
<h1>What is a branch in Git?</h1>
<p>A git branch is a line of development that allows you to work on different versions of a project simultaneously as a team.
it also allows you to go back to previos iterations if needed.</p>
<h3><a href="martinWireFrame.html">Back</a></h3>
</body>
<footer class="footer">
</footer>
</html>
Binary file added Wireframe/education-concept-with-book.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/leaf-branch-vase-with-shadow.jpg
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.
36 changes: 36 additions & 0 deletions Wireframe/martinStyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
body{

width: vw1;
height: vh1;
background-color:rgb(31, 231, 164);
font-family: 'Martin Mono', monospace;
text-align: center;
img {max-width: 50%; }

}


.readMe{
margin: 50px;
padding: 50px;

}
.colum{
float: left;
width: 50%;
padding: 10px;

}
.row:after {
content: "";
display: table;
clear: both;

}

footer{
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
background-color: rgb(245, 250, 248);}
46 changes: 46 additions & 0 deletions Wireframe/martinWireFrame.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe cyf first sprint building a web page using Wireframe provided</title>
<link rel="stylesheet" href="martinStyle.css" />
</head>
<body>
<header>
<h1>Wireframe cyf first sprint</h1>
<p> As part of the first sprint, we are building a web page using the provided wireframe. </p>
<p class="links"> <a href="readMePage.html">Read Me</a> | <a href="wireFrame.html">Wire Frame</a> | <a href="branch.html">Branch</a> </p>
</header>

<article class ="readMe">
<img src="education-concept-with-book.jpg" alt="a red book " height ="200px"/>
<h2><a href="readMePage.html">Read Me</a></h2>
<p> This is my first sprint project for the Code Your Future web development course. The objective of this sprint is to create a web page based on a provided wireframe design. The project involves using HTML and CSS to replicate the layout and styling of the wireframe as closely as possible. This exercise will help me improve my front-end development skills and gain practical experience in building web pages from design mockups. </p>
</article>

<div class="row">

<div class="colum">
<article class = "wireFrame">
<img src="low-angle-shot-barbed-wire-fence-clear-blue-sky.jpg" height ="200px"alt="a barbed wire fence " />
<h2><a href="wireFrame.html">Wire Frame</a></h2>
<p> The wireframe provided for this sprint is a simple layout with a header, main content area, and footer. The main content area contains an article with an image, title, description, and a link to read more. The footer contains a simple paragraph. </p>

</article>
</div>
<div class="colum"></div>
<article class = "branch">
<img src="leaf-branch-vase-with-shadow.jpg" alt="a tree branch " height ="200px" />
<h2><a href="branch.html">Branch</a></h2>
<p> I have created a branch named "martin-wireframe" for this project. This branch contains all the code and files related to the wireframe project. I will be committing my changes to this branch as I work on the project. </p>

</article>
</div>
</div>
</body>
<footer>
<p>Sprint 1</p>
</footer>

</html>
16 changes: 16 additions & 0 deletions Wireframe/readMePage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe cyf first sprint building a web page using Wireframe provided</title>
<link rel="stylesheet" href="martinStyle.css" />
</head>
<body class="readMePage">
<h1>What is the purpose of a README file?</h1>
<p>A README file is used to give the user an overview of the installation process and usage instructions.</p>
<h3><a href="martinWireFrame.html">Back</a></h3>
</body>
<footer class="footer">
</footer>
</html>
16 changes: 16 additions & 0 deletions Wireframe/wireFrame.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe cyf first sprint building a web page using Wireframe provided</title>
<link rel="stylesheet" href="martinStyle.css" />
</head>
<body>
<h1>What is the purpose of a wireframe?</h1>
<p>A wireframe is used as a tool to guide the design process of an app, program or wedsite</p>
<h3><a href="martinWireFrame.html">Back</a></h3>
</body>
<footer class="footer">
</footer>
</html>
Loading